Fix comments to match new nls tokens.

git-svn-id: https://svn.apache.org/repos/asf/harmony/enhanced/classlib/trunk@909453 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/modules/luni/src/main/java/org/apache/harmony/luni/internal/process/ProcessInputStream.java b/modules/luni/src/main/java/org/apache/harmony/luni/internal/process/ProcessInputStream.java
index fcf36d2..ee2ebef 100644
--- a/modules/luni/src/main/java/org/apache/harmony/luni/internal/process/ProcessInputStream.java
+++ b/modules/luni/src/main/java/org/apache/harmony/luni/internal/process/ProcessInputStream.java
@@ -123,11 +123,11 @@
                 return -1;
             }
             if (nbytes > buffer.length  || nbytes < 0) {
-                // K0031=Length out of bounds \: {0}
+                // luni.18=Length out of bounds \: {0}
                 throw new ArrayIndexOutOfBoundsException(Messages.getString("luni.18", nbytes)); //$NON-NLS-1$
             }
             if (offset < 0 || offset > buffer.length - nbytes) {
-                // K002e=Offset out of bounds \: {0}
+                // luni.12=Offset out of bounds \: {0}
                 throw new ArrayIndexOutOfBoundsException(Messages.getString("luni.12", offset)); //$NON-NLS-1$
             }
             return readImpl(buffer, offset, nbytes, handle);