Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Valenta2005-08-04 20:24:57 +0000
committerMichael Valenta2005-08-04 20:24:57 +0000
commit7b9fb69e16f69e06e164684d6e7b43b449c37043 (patch)
tree29b6f548c0c90bcf24e79aab0e98df19515c49f4 /bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/subscriber/CVSParticipant.java
parent481dbc56532fbe18b3b54df13045cbb7c59be25f (diff)
downloadeclipse.platform.team-7b9fb69e16f69e06e164684d6e7b43b449c37043.tar.gz
eclipse.platform.team-7b9fb69e16f69e06e164684d6e7b43b449c37043.tar.xz
eclipse.platform.team-7b9fb69e16f69e06e164684d6e7b43b449c37043.zip
Removed unnecessary NLS tags
Diffstat (limited to 'bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/subscriber/CVSParticipant.java')
-rw-r--r--bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/subscriber/CVSParticipant.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/subscriber/CVSParticipant.java b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/subscriber/CVSParticipant.java
index 5dd0e735b..ea732d2db 100644
--- a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/subscriber/CVSParticipant.java
+++ b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/subscriber/CVSParticipant.java
@@ -70,7 +70,7 @@ public class CVSParticipant extends SubscriberParticipant implements IChangeSetP
try {
ILogEntry entry = ((ICVSRemoteFile)remote).getLogEntry(monitor);
remoteAuthor = entry.getAuthor();
- config.setRightLabel(NLS.bind(CVSUIMessages.CVSParticipant_0, new String[] { remote.getContentIdentifier(), remoteAuthor })); //$NON-NLS-1$
+ config.setRightLabel(NLS.bind(CVSUIMessages.CVSParticipant_0, new String[] { remote.getContentIdentifier(), remoteAuthor }));
} catch (TeamException e) {
CVSUIPlugin.log(e);
}
@@ -84,7 +84,7 @@ public class CVSParticipant extends SubscriberParticipant implements IChangeSetP
ILogEntry entry = ((ICVSRemoteFile)base).getLogEntry(monitor);
baseAuthor = entry.getAuthor();
}
- config.setAncestorLabel(NLS.bind(CVSUIMessages.CVSParticipant_1, new String[] { base.getContentIdentifier(), baseAuthor })); //$NON-NLS-1$
+ config.setAncestorLabel(NLS.bind(CVSUIMessages.CVSParticipant_1, new String[] { base.getContentIdentifier(), baseAuthor }));
} catch (TeamException e) {
CVSUIPlugin.log(e);
}
@@ -149,7 +149,7 @@ public class CVSParticipant extends SubscriberParticipant implements IChangeSetP
pages[i] = inheritedPages[i];
}
pages[pages.length - 1] = new ComparePreferencePage();
- pages[pages.length - 1].setTitle(CVSUIMessages.CVSParticipant_2); //$NON-NLS-1$
+ pages[pages.length - 1].setTitle(CVSUIMessages.CVSParticipant_2);
return pages;
}

Back to the top