< prev index next >

src/java.base/share/classes/com/sun/java/util/jar/pack/Code.java

Print this page

        

@@ -60,14 +60,14 @@
 
     // The following fields are used directly by the ClassReader, etc.
     int max_stack;
     int max_locals;
 
-    ConstantPool.Entry handler_class[] = noRefs;
-    int handler_start[] = noInts;
-    int handler_end[] = noInts;
-    int handler_catch[] = noInts;
+    ConstantPool.Entry[] handler_class = noRefs;
+    int[] handler_start = noInts;
+    int[] handler_end = noInts;
+    int[] handler_catch = noInts;
 
     byte[] bytes;
     Fixups fixups;  // reference relocations, if any are required
     Object insnMap; // array of instruction boundaries
 
< prev index next >