1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-31 21:05:37 +02:00

[216252] canceled --> cancelled in comments

This commit is contained in:
Martin Oberhuber 2008-04-12 00:21:08 +00:00
parent 01f2b8e0da
commit b6715f3920
3 changed files with 4 additions and 4 deletions

View file

@ -148,7 +148,7 @@ public class KeyboardInteractiveDialog extends TrayDialog {
}
/**
* Returns the entered values, or null
* if the user canceled.
* if the user cancelled.
*
* @return the entered values
*/

View file

@ -278,7 +278,7 @@ class SshConnection extends Thread {
});
String[] result=finResult[0];
if (result == null)
return null; // canceled
return null; // cancelled
if (result.length == 1 && prompt.length == 1 && prompt[0].trim().equalsIgnoreCase("password:")) { //$NON-NLS-1$
fPassword = result[0];
}

View file

@ -213,7 +213,7 @@ public class UserValidationDialog extends TrayDialog {
/**
* Returns the password entered by the user, or null
* if the user canceled.
* if the user cancelled.
*
* @return the entered password
*/
@ -223,7 +223,7 @@ public class UserValidationDialog extends TrayDialog {
/**
* Returns the username entered by the user, or null
* if the user canceled.
* if the user cancelled.
*
* @return the entered username
*/