Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomasz Zarna2008-09-22 15:27:07 +0000
committerTomasz Zarna2008-09-22 15:27:07 +0000
commitbffbfbdbeb7614f93b7dd36a25cd9dfd3c303154 (patch)
tree8ecb3a135859f77e00203245f9b67fcc4ca1172b /bundles/org.eclipse.jsch.ui/src/org/eclipse/jsch
parentb17356c5f33ab795c0be1ca34349f9c0e50626f2 (diff)
downloadeclipse.platform.team-bffbfbdbeb7614f93b7dd36a25cd9dfd3c303154.tar.gz
eclipse.platform.team-bffbfbdbeb7614f93b7dd36a25cd9dfd3c303154.tar.xz
eclipse.platform.team-bffbfbdbeb7614f93b7dd36a25cd9dfd3c303154.zip
bug 247815: [CVS UI] Correct typo in method in UserInfoPrompter
Diffstat (limited to 'bundles/org.eclipse.jsch.ui/src/org/eclipse/jsch')
-rw-r--r--bundles/org.eclipse.jsch.ui/src/org/eclipse/jsch/ui/UserInfoPrompter.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/bundles/org.eclipse.jsch.ui/src/org/eclipse/jsch/ui/UserInfoPrompter.java b/bundles/org.eclipse.jsch.ui/src/org/eclipse/jsch/ui/UserInfoPrompter.java
index 2320770f1..a425b54ca 100644
--- a/bundles/org.eclipse.jsch.ui/src/org/eclipse/jsch/ui/UserInfoPrompter.java
+++ b/bundles/org.eclipse.jsch.ui/src/org/eclipse/jsch/ui/UserInfoPrompter.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2007 IBM Corporation and others.
+ * Copyright (c) 2007, 2008 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -179,7 +179,7 @@ public class UserInfoPrompter implements UserInfo, UIKeyboardInteractive{
attemptCount++;
return new String[] {password};
}
- String[] result=iromptForKeyboradInteractiveInUI(destination, name,
+ String[] result=promptForKeyboradInteractiveInUI(destination, name,
instruction, prompt, echo);
if(result==null)
return null; // canceled
@@ -195,7 +195,7 @@ public class UserInfoPrompter implements UserInfo, UIKeyboardInteractive{
}
}
- private String[] iromptForKeyboradInteractiveInUI(final String destination,
+ private String[] promptForKeyboradInteractiveInUI(final String destination,
final String name, final String instruction, final String[] prompt,
final boolean[] echo){
final String[][] result=new String[1][];

Back to the top