Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornitind2005-11-10 02:11:25 +0000
committernitind2005-11-10 02:11:25 +0000
commit0ecfe3b8fcd1f40573521182c9a65bcc26398cdf (patch)
treee9b49f6e0532dbfc3a2096a634e02fc7a73edb97 /bundles/org.eclipse.wst.sse.core/src-encoding
parent73e7641d38ac856179c5b7594712cfc25a47dcbb (diff)
downloadwebtools.sourceediting-0ecfe3b8fcd1f40573521182c9a65bcc26398cdf.tar.gz
webtools.sourceediting-0ecfe3b8fcd1f40573521182c9a65bcc26398cdf.tar.xz
webtools.sourceediting-0ecfe3b8fcd1f40573521182c9a65bcc26398cdf.zip
[115727] externalize strings that need them or mark them as non-nls
Diffstat (limited to 'bundles/org.eclipse.wst.sse.core/src-encoding')
-rw-r--r--bundles/org.eclipse.wst.sse.core/src-encoding/org/eclipse/wst/sse/core/internal/encoding/CodedIO.java2
-rw-r--r--bundles/org.eclipse.wst.sse.core/src-encoding/org/eclipse/wst/sse/core/internal/encoding/CodedReaderCreator.java2
-rw-r--r--bundles/org.eclipse.wst.sse.core/src-encoding/org/eclipse/wst/sse/core/internal/encoding/CodedStreamCreator.java2
3 files changed, 3 insertions, 3 deletions
diff --git a/bundles/org.eclipse.wst.sse.core/src-encoding/org/eclipse/wst/sse/core/internal/encoding/CodedIO.java b/bundles/org.eclipse.wst.sse.core/src-encoding/org/eclipse/wst/sse/core/internal/encoding/CodedIO.java
index a24c09b37e..a2d99983db 100644
--- a/bundles/org.eclipse.wst.sse.core/src-encoding/org/eclipse/wst/sse/core/internal/encoding/CodedIO.java
+++ b/bundles/org.eclipse.wst.sse.core/src-encoding/org/eclipse/wst/sse/core/internal/encoding/CodedIO.java
@@ -175,7 +175,7 @@ public abstract class CodedIO {
// we don't allow null argument (or risk NPE or
// IllegalArgumentException later at several
// points.
- Assert.isNotNull(detectedCharsetName, "illegal charset argument. it can not be null");
+ Assert.isNotNull(detectedCharsetName, "illegal charset argument. it can not be null"); //$NON-NLS-1$
String result = detectedCharsetName;
// 1. Check explicit mapping overrides from
// property file
diff --git a/bundles/org.eclipse.wst.sse.core/src-encoding/org/eclipse/wst/sse/core/internal/encoding/CodedReaderCreator.java b/bundles/org.eclipse.wst.sse.core/src-encoding/org/eclipse/wst/sse/core/internal/encoding/CodedReaderCreator.java
index 039eaa0035..1bb216d8b3 100644
--- a/bundles/org.eclipse.wst.sse.core/src-encoding/org/eclipse/wst/sse/core/internal/encoding/CodedReaderCreator.java
+++ b/bundles/org.eclipse.wst.sse.core/src-encoding/org/eclipse/wst/sse/core/internal/encoding/CodedReaderCreator.java
@@ -513,7 +513,7 @@ public class CodedReaderCreator extends CodedIO {
}
public void set(IFile iFile) throws CoreException, IOException {
- Assert.isNotNull(iFile, "illegal argument");
+ Assert.isNotNull(iFile, "illegal argument"); //$NON-NLS-1$
resetAll();
fIFile = iFile;
}
diff --git a/bundles/org.eclipse.wst.sse.core/src-encoding/org/eclipse/wst/sse/core/internal/encoding/CodedStreamCreator.java b/bundles/org.eclipse.wst.sse.core/src-encoding/org/eclipse/wst/sse/core/internal/encoding/CodedStreamCreator.java
index 63c4e44e19..07d319fcfc 100644
--- a/bundles/org.eclipse.wst.sse.core/src-encoding/org/eclipse/wst/sse/core/internal/encoding/CodedStreamCreator.java
+++ b/bundles/org.eclipse.wst.sse.core/src-encoding/org/eclipse/wst/sse/core/internal/encoding/CodedStreamCreator.java
@@ -379,7 +379,7 @@ public class CodedStreamCreator extends CodedIO {
analyze();
}
// post condition
- Assert.isNotNull(fCurrentEncodingMemento, "illegal post condition state");
+ Assert.isNotNull(fCurrentEncodingMemento, "illegal post condition state"); //$NON-NLS-1$
// be sure to carry over appropriate encoding
// "state" that may be
// relevent.

Back to the top