Fix comments to match new nls tokens.

git-svn-id: https://svn.apache.org/repos/asf/harmony/enhanced/classlib/trunk@909477 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/modules/luni/src/main/java/org/apache/harmony/luni/net/SocketInputStream.java b/modules/luni/src/main/java/org/apache/harmony/luni/net/SocketInputStream.java
index e776505..6950c47 100644
--- a/modules/luni/src/main/java/org/apache/harmony/luni/net/SocketInputStream.java
+++ b/modules/luni/src/main/java/org/apache/harmony/luni/net/SocketInputStream.java
@@ -78,7 +78,7 @@
         }
 
         if (0 > offset || offset >= buffer.length) {
-            // K002e=Offset out of bounds \: {0}
+            // luni.12=Offset out of bounds \: {0}
             throw new ArrayIndexOutOfBoundsException(Messages.getString("luni.12", offset));//$NON-NLS-1$
         }
         if (0 > count || offset + count > buffer.length) {