Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Valenta2002-04-17 19:40:19 +0000
committerMichael Valenta2002-04-17 19:40:19 +0000
commit11c92a984ef3cb10a68d3fa5e298d686cdd02586 (patch)
treea34b50b18ec4f1e94d516988ecf6e224a5f0d786
parent855178c1552c0f28ebd48b0f9d249230a9230fb2 (diff)
downloadeclipse.platform.team-11c92a984ef3cb10a68d3fa5e298d686cdd02586.tar.gz
eclipse.platform.team-11c92a984ef3cb10a68d3fa5e298d686cdd02586.tar.xz
eclipse.platform.team-11c92a984ef3cb10a68d3fa5e298d686cdd02586.zip
NLS updates
-rw-r--r--bundles/org.eclipse.team.cvs.ssh/src/org/eclipse/team/internal/ccvs/ssh/Client.java4
-rw-r--r--bundles/org.eclipse.team.cvs.ssh/src/org/eclipse/team/internal/ccvs/ssh/Misc.java2
2 files changed, 3 insertions, 3 deletions
diff --git a/bundles/org.eclipse.team.cvs.ssh/src/org/eclipse/team/internal/ccvs/ssh/Client.java b/bundles/org.eclipse.team.cvs.ssh/src/org/eclipse/team/internal/ccvs/ssh/Client.java
index 12b81bb85..c56d6cb7f 100644
--- a/bundles/org.eclipse.team.cvs.ssh/src/org/eclipse/team/internal/ccvs/ssh/Client.java
+++ b/bundles/org.eclipse.team.cvs.ssh/src/org/eclipse/team/internal/ccvs/ssh/Client.java
@@ -206,11 +206,11 @@ public class Client {
// Log the description provided by the server
if (description == null) {
- description = Policy.bind("Client.noDisconnectDescription");
+ description = Policy.bind("Client.noDisconnectDescription"); //$NON-NLS-1$
}
// Throw an IOException with the proper text
- throw new IOException(Policy.bind("Client.disconnectDescription", new Object[] {description}));
+ throw new IOException(Policy.bind("Client.disconnectDescription", new Object[] {description}));//$NON-NLS-1$
}
}
diff --git a/bundles/org.eclipse.team.cvs.ssh/src/org/eclipse/team/internal/ccvs/ssh/Misc.java b/bundles/org.eclipse.team.cvs.ssh/src/org/eclipse/team/internal/ccvs/ssh/Misc.java
index 7fcc9fbb6..5b848b66d 100644
--- a/bundles/org.eclipse.team.cvs.ssh/src/org/eclipse/team/internal/ccvs/ssh/Misc.java
+++ b/bundles/org.eclipse.team.cvs.ssh/src/org/eclipse/team/internal/ccvs/ssh/Misc.java
@@ -373,7 +373,7 @@ public static String readString(InputStream is) throws IOException {
for (int i = 0; i < buffer.length; i++) {
int next = is.read();
if (next == -1) {
- throw new IOException(Policy.bind("stream"));
+ throw new IOException(Policy.bind("stream")); //$NON-NLS-1$
} else {
buffer[i] = (byte)next;
}

Back to the top