Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.net4j/src/org/eclipse/internal/net4j/transport/BufferUtil.java')
-rw-r--r--plugins/org.eclipse.net4j/src/org/eclipse/internal/net4j/transport/BufferUtil.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/org.eclipse.net4j/src/org/eclipse/internal/net4j/transport/BufferUtil.java b/plugins/org.eclipse.net4j/src/org/eclipse/internal/net4j/transport/BufferUtil.java
index 143b47de7b..0cbb8421db 100644
--- a/plugins/org.eclipse.net4j/src/org/eclipse/internal/net4j/transport/BufferUtil.java
+++ b/plugins/org.eclipse.net4j/src/org/eclipse/internal/net4j/transport/BufferUtil.java
@@ -22,7 +22,7 @@ public final class BufferUtil
{
public static final short DEFAULT_BUFFER_CAPACITY = 4096;
- public static final String UTF8_CHAR_SET_NAME = "UTF-8";
+ public static final String UTF8_CHAR_SET_NAME = "UTF-8"; //$NON-NLS-1$
private BufferUtil()
{
@@ -37,10 +37,10 @@ public final class BufferUtil
if (object == null)
{
- throw new IllegalArgumentException("object == null");
+ throw new IllegalArgumentException("object == null"); //$NON-NLS-1$
}
- throw new IllegalArgumentException("Unable to provide buffers: " + object);
+ throw new IllegalArgumentException("Unable to provide buffers: " + object); //$NON-NLS-1$
}
public static byte[] toUTF8(String str)
@@ -56,7 +56,7 @@ public final class BufferUtil
String test = new String(bytes, UTF8_CHAR_SET_NAME);
if (!str.equals(test))
{
- throw new IllegalArgumentException("String not encodable: " + str);
+ throw new IllegalArgumentException("String not encodable: " + str); //$NON-NLS-1$
}
return bytes;
@@ -107,7 +107,7 @@ public final class BufferUtil
byte[] bytes = BufferUtil.toUTF8(str);
if (bytes.length > byteBuffer.remaining())
{
- throw new IllegalArgumentException("String too long: " + str);
+ throw new IllegalArgumentException("String too long: " + str); //$NON-NLS-1$
}
putByteArray(byteBuffer, bytes);

Back to the top