Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomasz Zarna2010-11-04 15:25:17 +0000
committerTomasz Zarna2010-11-04 15:25:17 +0000
commiteca1abb2800be8c37bc4e567db717e5a47cbe01a (patch)
tree93db4eeef22016a8c6458240405c3cbd4372e6e5
parent3ff2d5f208430bc43022b2fa6e1b26c1aca2d882 (diff)
downloadeclipse.platform.team-eca1abb2800be8c37bc4e567db717e5a47cbe01a.tar.gz
eclipse.platform.team-eca1abb2800be8c37bc4e567db717e5a47cbe01a.tar.xz
eclipse.platform.team-eca1abb2800be8c37bc4e567db717e5a47cbe01a.zip
typo fixed
-rw-r--r--bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/client/CommandOutputListener.java8
1 files changed, 3 insertions, 5 deletions
diff --git a/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/client/CommandOutputListener.java b/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/client/CommandOutputListener.java
index 8eed8512b..297574e05 100644
--- a/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/client/CommandOutputListener.java
+++ b/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/client/CommandOutputListener.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2007 IBM Corporation and others.
+ * Copyright (c) 2000, 2010 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -12,9 +12,7 @@ package org.eclipse.team.internal.ccvs.core.client;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
-import org.eclipse.team.internal.ccvs.core.CVSStatus;
-import org.eclipse.team.internal.ccvs.core.ICVSFolder;
-import org.eclipse.team.internal.ccvs.core.ICVSRepositoryLocation;
+import org.eclipse.team.internal.ccvs.core.*;
import org.eclipse.team.internal.ccvs.core.client.listeners.ICommandOutputListener;
import org.eclipse.team.internal.ccvs.core.connection.CVSRepositoryLocation;
@@ -48,7 +46,7 @@ public class CommandOutputListener implements ICommandOutputListener {
*
* @param line the error line received from the server
* @param location the repository location
- * @return String the potocol error or null
+ * @return String the protocol error or null
*/
protected String getProtocolError(String line, ICVSRepositoryLocation location) {
if (line.startsWith("Protocol error:")) { //$NON-NLS-1$

Back to the top