Browse Source

untabify

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@278435 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 20 years ago
parent
commit
665934f199
1 changed files with 5 additions and 5 deletions
  1. +5
    -5
      src/main/org/apache/tools/ant/taskdefs/optional/ssh/SSHUserInfo.java

+ 5
- 5
src/main/org/apache/tools/ant/taskdefs/optional/ssh/SSHUserInfo.java View File

@@ -174,12 +174,12 @@ public class SSHUserInfo implements UserInfo, UIKeyboardInteractive {
String instruction,
String[] prompt,
boolean[] echo) {
if (prompt.length != 1 || echo[0] != false || this.password == null) {
if (prompt.length != 1 || echo[0] != false || this.password == null) {
return null;
}
String[] response=new String[1];
response[0]=this.password;
return response;
}
String[] response=new String[1];
response[0]=this.password;
return response;
}

}

Loading…
Cancel
Save