diff options
author | Michael Valenta | 2002-04-08 10:51:34 -0400 |
---|---|---|
committer | Michael Valenta | 2002-04-08 10:51:34 -0400 |
commit | 27eae61ca02ec30c070f0c1e78b65c27d816a452 (patch) | |
tree | 42196d8f6509fe7f4a5eb644df84cab483bcd196 | |
parent | 2e5f236eaaa87591ae498c45cce894cd3f85d762 (diff) | |
download | eclipse.platform.team-27eae61ca02ec30c070f0c1e78b65c27d816a452.tar.gz eclipse.platform.team-27eae61ca02ec30c070f0c1e78b65c27d816a452.tar.xz eclipse.platform.team-27eae61ca02ec30c070f0c1e78b65c27d816a452.zip |
9734: Team2 (i0212): bug when using CVSNT greater then 1.11.1.1
2 files changed, 3 insertions, 3 deletions
diff --git a/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/client/MTHandler.java b/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/client/MTHandler.java index 9f63f4bae..104ef426a 100644 --- a/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/client/MTHandler.java +++ b/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/client/MTHandler.java @@ -22,7 +22,7 @@ public class MTHandler extends ResponseHandler { * @see ResponseHandler#getResponseID() */ public String getResponseID() { - return "MT"; // $NON-NLS-1$ + return "MT"; //$NON-NLS-1$ } /** @@ -58,7 +58,7 @@ public class MTHandler extends ResponseHandler { } // Accumulate the line and indicate if its available for use - if (tag.equals("newline")) { + if (tag.equals("newline")) { //$NON-NLS-1$ isLineAvailable = true; } else if (text != null) { // Reset the previous line if required diff --git a/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/client/Session.java b/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/client/Session.java index 47000b0e7..bc68b52d6 100644 --- a/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/client/Session.java +++ b/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/client/Session.java @@ -151,7 +151,7 @@ public class Session { if (isCVSNT()) { Request.registerResponseHandler(new MTHandler()); } else { - Request.removeResponseHandler("MT"); + Request.removeResponseHandler("MT"); //$NON-NLS-1$ } // tell the server the names of the responses we can handle |