Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/CVSProjectSetCapability.java12
1 files changed, 7 insertions, 5 deletions
diff --git a/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/CVSProjectSetCapability.java b/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/CVSProjectSetCapability.java
index e3606bc2a..17f3cc190 100644
--- a/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/CVSProjectSetCapability.java
+++ b/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/CVSProjectSetCapability.java
@@ -15,7 +15,8 @@ package org.eclipse.team.internal.ccvs.core;
import java.io.File;
import java.net.URI;
import java.util.*;
- import org.eclipse.core.resources.*;
+
+import org.eclipse.core.resources.*;
import org.eclipse.core.runtime.*;
import org.eclipse.core.runtime.jobs.ISchedulingRule;
import org.eclipse.core.runtime.jobs.MultiRule;
@@ -30,10 +31,11 @@ import org.eclipse.team.internal.ccvs.core.syncinfo.FolderSyncInfo;
import org.eclipse.team.internal.ccvs.core.util.KnownRepositories;
/**
- * An object for serializing and deserializing
- * of references to CVS based projects. Given a project, it can produce a
- * UTF-8 encoded String which can be stored in a file.
- * Given this String, it can load a project into the workspace.
+ * An object for serializing and deserializing of references to CVS based
+ * projects. Given a project, it can produce a UTF-8 encoded String which can be
+ * stored in a file. Given this String, it can load a project into the
+ * workspace. When necessary it can also prompt for addition repository
+ * information displaying Specify Repository Information dialog.
*
* @since 3.0
*/

Back to the top