Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Valenta2004-05-02 03:45:19 +0000
committerMichael Valenta2004-05-02 03:45:19 +0000
commit2d8001d8f0df522e45e548678625b1ba5578a194 (patch)
tree45b6846103f594925b27e5609a8c892ed2a77fce /tests/org.eclipse.team.tests.cvs.core
parent4bbb8901a5b49c7a6a9a94c1ad314134c11d0c6a (diff)
downloadeclipse.platform.team-2d8001d8f0df522e45e548678625b1ba5578a194.tar.gz
eclipse.platform.team-2d8001d8f0df522e45e548678625b1ba5578a194.tar.xz
eclipse.platform.team-2d8001d8f0df522e45e548678625b1ba5578a194.zip
Bug 14751: [CVS UI] Can't edit all repository properties
Diffstat (limited to 'tests/org.eclipse.team.tests.cvs.core')
-rw-r--r--tests/org.eclipse.team.tests.cvs.core/src/org/eclipse/team/tests/ccvs/core/CVSTestSetup.java7
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/org.eclipse.team.tests.cvs.core/src/org/eclipse/team/tests/ccvs/core/CVSTestSetup.java b/tests/org.eclipse.team.tests.cvs.core/src/org/eclipse/team/tests/ccvs/core/CVSTestSetup.java
index 0d989f709..cf6279aeb 100644
--- a/tests/org.eclipse.team.tests.cvs.core/src/org/eclipse/team/tests/ccvs/core/CVSTestSetup.java
+++ b/tests/org.eclipse.team.tests.cvs.core/src/org/eclipse/team/tests/ccvs/core/CVSTestSetup.java
@@ -30,9 +30,6 @@ public class CVSTestSetup extends TestSetup {
public static final int COMPRESSION_LEVEL;
public static final boolean FAIL_IF_EXCEPTION_LOGGED;
- public static final String READ_REPOSITORY_LOCATION;
- public static final String WRITE_REPOSITORY_LOCATION;
-
public static CVSRepositoryLocation repository;
public static CVSTestLogListener logListener;
@@ -40,8 +37,6 @@ public class CVSTestSetup extends TestSetup {
static {
loadProperties();
REPOSITORY_LOCATION = System.getProperty("eclipse.cvs.repository");
- READ_REPOSITORY_LOCATION = System.getProperty("eclipse.cvs.repository.read");
- WRITE_REPOSITORY_LOCATION = System.getProperty("eclipse.cvs.repository.write");
INITIALIZE_REPO = Boolean.valueOf(System.getProperty("eclipse.cvs.initrepo", "false")).booleanValue();
DEBUG = Boolean.valueOf(System.getProperty("eclipse.cvs.debug", "false")).booleanValue();
RSH = System.getProperty("eclipse.cvs.rsh", "rsh");
@@ -183,8 +178,6 @@ public class CVSTestSetup extends TestSetup {
CVSRepositoryLocation repository = (CVSRepositoryLocation)KnownRepositories.getInstance().getRepository(location);
KnownRepositories.getInstance().addRepository(repository, false);
repository.setUserAuthenticator(new TestsUserAuthenticator());
- repository.setReadLocation(READ_REPOSITORY_LOCATION);
- repository.setWriteLocation(WRITE_REPOSITORY_LOCATION);
// Give some info about which repository the tests are running with
System.out.println("Connecting to: " + repository.getHost() + ":" + repository.getMethod().getName());

Back to the top