Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Valenta2003-10-20 13:36:09 +0000
committerMichael Valenta2003-10-20 13:36:09 +0000
commitba16ed7a822d8bb3ea16e842f60ea06bfcc0ca77 (patch)
treeff0b237a9fe0d5407af79b618bbe9a464e342729
parentce052535f37beffc305fcd4586672fabf8fe444f (diff)
downloadeclipse.platform.team-ba16ed7a822d8bb3ea16e842f60ea06bfcc0ca77.tar.gz
eclipse.platform.team-ba16ed7a822d8bb3ea16e842f60ea06bfcc0ca77.tar.xz
eclipse.platform.team-ba16ed7a822d8bb3ea16e842f60ea06bfcc0ca77.zip
45191: CVS Repo view does not show projects if opening 3.0 wsp with 2.12
-rw-r--r--bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/CVSProviderPlugin.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/CVSProviderPlugin.java b/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/CVSProviderPlugin.java
index 61e425ac7..48f244e15 100644
--- a/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/CVSProviderPlugin.java
+++ b/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/CVSProviderPlugin.java
@@ -686,7 +686,7 @@ public class CVSProviderPlugin extends Plugin {
for (int i = 0; i < repos.length; i++) {
CVSRepositoryLocation root = (CVSRepositoryLocation)repos[i];
dos.writeUTF(root.getLocation());
- dos.writeUTF("unused"); // place holder for an additional configuration parameter //$NON-NLS-1$
+ dos.writeUTF("cvs"); // place holder for cureently unused remote program name //$NON-NLS-1$
}
}

Back to the top