You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2014/09/19 18:23:04 UTC

svn commit: r1626263 - /commons/proper/bcel/trunk/src/main/java/org/apache/bcel/classfile/ConstantCP.java

Author: sebb
Date: Fri Sep 19 16:23:04 2014
New Revision: 1626263

URL: http://svn.apache.org/r1626263
Log:
List fields separately

Modified:
    commons/proper/bcel/trunk/src/main/java/org/apache/bcel/classfile/ConstantCP.java

Modified: commons/proper/bcel/trunk/src/main/java/org/apache/bcel/classfile/ConstantCP.java
URL: http://svn.apache.org/viewvc/commons/proper/bcel/trunk/src/main/java/org/apache/bcel/classfile/ConstantCP.java?rev=1626263&r1=1626262&r2=1626263&view=diff
==============================================================================
--- commons/proper/bcel/trunk/src/main/java/org/apache/bcel/classfile/ConstantCP.java (original)
+++ commons/proper/bcel/trunk/src/main/java/org/apache/bcel/classfile/ConstantCP.java Fri Sep 19 16:23:04 2014
@@ -37,7 +37,8 @@ public abstract class ConstantCP extends
     private static final long serialVersionUID = -6275762995206209402L;
     /** References to the constants containing the class and the field signature
      */
-    protected int class_index, name_and_type_index;
+    protected int class_index;
+    protected int name_and_type_index;
 
 
     /**