< prev index next >

src/java.base/share/classes/java/lang/Short.java

Print this page

        

@@ -203,11 +203,11 @@
     }
 
     private static class ShortCache {
         private ShortCache(){}
 
-        static final Short cache[] = new Short[-(-128) + 127 + 1];
+        static final Short[] cache = new Short[-(-128) + 127 + 1];
 
         static {
             for(int i = 0; i < cache.length; i++)
                 cache[i] = new Short((short)(i - 128));
         }
< prev index next >