Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Valenta2003-03-06 19:46:27 +0000
committerMichael Valenta2003-03-06 19:46:27 +0000
commit2550dd45e6f58e9ad7038084d22cf2fc5f2bba85 (patch)
tree069a67644de37d994ae1daaf37b9678762c00eee /bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/repo/RepositoriesView.java
parentec9035ad22b6770fe094459d9adbc924e543c07d (diff)
downloadeclipse.platform.team-2550dd45e6f58e9ad7038084d22cf2fc5f2bba85.tar.gz
eclipse.platform.team-2550dd45e6f58e9ad7038084d22cf2fc5f2bba85.tar.xz
eclipse.platform.team-2550dd45e6f58e9ad7038084d22cf2fc5f2bba85.zip
Diffstat (limited to 'bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/repo/RepositoriesView.java')
-rw-r--r--bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/repo/RepositoriesView.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/repo/RepositoriesView.java b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/repo/RepositoriesView.java
index 28ceb3a67..225750ce0 100644
--- a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/repo/RepositoriesView.java
+++ b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/repo/RepositoriesView.java
@@ -161,7 +161,7 @@ public class RepositoriesView extends RemoteViewPart {
* @return boolean
*/
private boolean includeAnonConnection() {
- return System.getProperty("eclipse.cvs.anon") != null;
+ return System.getProperty("eclipse.cvs.anon") != null; //$NON-NLS-1$
}
/**
@@ -263,7 +263,7 @@ public class RepositoriesView extends RemoteViewPart {
}
return Policy.bind("RepositoriesView.ResourceInRepository", name, res.getRepository().getLocation()); //$NON-NLS-1$
}
- return Policy.bind("RepositoriesView.OneItemSelected");
+ return Policy.bind("RepositoriesView.OneItemSelected"); //$NON-NLS-1$
}
/**

Back to the top