no hard coded default value for ssh port, will use jsch one

git-svn-id: https://svn.apache.org/repos/asf/incubator/ivy/trunk@484459 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Xavier Hanin 2006-08-20 14:17:54 +00:00
parent 9e78461055
commit 02194a6a82
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ public abstract class AbstractSshBasedRepository extends AbstractRepository {
private String keyFilePassword = null;
private String user = "guest";
private String host = null;
private int port = 22;
private int port = -1;
public AbstractSshBasedRepository() {
super();