Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomasz Zarna2010-11-04 15:22:50 +0000
committerTomasz Zarna2010-11-04 15:22:50 +0000
commit3ff2d5f208430bc43022b2fa6e1b26c1aca2d882 (patch)
tree2ec0690a07f561d85d359b4a0a0aa6629f0a1d94 /bundles
parentb5e8964b3ac9f9878adf46d348d22335300dcb9b (diff)
downloadeclipse.platform.team-3ff2d5f208430bc43022b2fa6e1b26c1aca2d882.tar.gz
eclipse.platform.team-3ff2d5f208430bc43022b2fa6e1b26c1aca2d882.tar.xz
eclipse.platform.team-3ff2d5f208430bc43022b2fa6e1b26c1aca2d882.zip
typos fixed
Diffstat (limited to 'bundles')
-rw-r--r--bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/client/Request.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/client/Request.java b/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/client/Request.java
index 148812c44..3217456ce 100644
--- a/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/client/Request.java
+++ b/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/client/Request.java
@@ -62,7 +62,7 @@ public abstract class Request {
* This method is invoked by Session to get a mutable copy of the
* global list of acceptable response handlers.
*
- * @return a map of reponse handlers
+ * @return a map of response handlers
*/
protected static Map getReponseHandlerMap() {
synchronized(responseHandlers) {
@@ -173,7 +173,7 @@ public abstract class Request {
if (serious) {
throw new CVSServerException(status);
} else {
- // look for particularly bad errors in the accumulated statii
+ // look for particularly bad errors in the accumulated statuses
IStatus[] errors = session.getErrors();
for (int i = 0; i < errors.length; i++) {
IStatus s = errors[i];
@@ -228,7 +228,7 @@ public abstract class Request {
} else {
return new MultiStatus(CVSProviderPlugin.ID, IStatus.INFO,
session.getErrors(),
- NLS.bind(CVSMessages.Command_warnings, new String[] { getDisplayText() }), null); //
+ NLS.bind(CVSMessages.Command_warnings, new String[] { getDisplayText() }), null);
}
}
@@ -237,7 +237,7 @@ public abstract class Request {
* reports as error.
*/
protected String getServerErrorMessage() {
- return NLS.bind(CVSMessages.Command_serverError, new String[] { getDisplayText() }); //
+ return NLS.bind(CVSMessages.Command_serverError, new String[] { getDisplayText() });
}
protected String getDisplayText() {
return getRequestId();

Back to the top