Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Valenta2002-11-28 16:14:27 +0000
committerMichael Valenta2002-11-28 16:14:27 +0000
commit6b1316b5019cd6f89247f48c820529a5645f0bc3 (patch)
tree295bf404e8847c34dcd26a0f9282c69865e83bf6
parent57ba0b60e9ddf49daf25df8f0670a31a0c23d634 (diff)
downloadeclipse.platform.team-6b1316b5019cd6f89247f48c820529a5645f0bc3.tar.gz
eclipse.platform.team-6b1316b5019cd6f89247f48c820529a5645f0bc3.tar.xz
eclipse.platform.team-6b1316b5019cd6f89247f48c820529a5645f0bc3.zip
Fixed static reference
-rw-r--r--bundles/org.eclipse.team.cvs.ssh/src/org/eclipse/team/internal/ccvs/ssh/SSHServerConnection.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.team.cvs.ssh/src/org/eclipse/team/internal/ccvs/ssh/SSHServerConnection.java b/bundles/org.eclipse.team.cvs.ssh/src/org/eclipse/team/internal/ccvs/ssh/SSHServerConnection.java
index 7decb91f4..44f209f55 100644
--- a/bundles/org.eclipse.team.cvs.ssh/src/org/eclipse/team/internal/ccvs/ssh/SSHServerConnection.java
+++ b/bundles/org.eclipse.team.cvs.ssh/src/org/eclipse/team/internal/ccvs/ssh/SSHServerConnection.java
@@ -69,7 +69,7 @@ public class SSHServerConnection implements IServerConnection {
String hostname = location.getHost();
String username = location.getUsername();
int port = location.getPort();
- if (port == location.USE_DEFAULT_PORT)
+ if (port == ICVSRepositoryLocation.USE_DEFAULT_PORT)
port = DEFAULT_PORT;
// create the connection using host, username, and password
client = new Client(hostname, port, username, password, INVOKE_SVR_CMD, location.getTimeout());

Back to the top