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 2015/08/25 19:01:38 UTC

svn commit: r1697738 - /commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/verifier/statics/Pass3aVerifier.java

Author: sebb
Date: Tue Aug 25 17:01:38 2015
New Revision: 1697738

URL: http://svn.apache.org/r1697738
Log:
No need for these to be package protected

Modified:
    commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/verifier/statics/Pass3aVerifier.java

Modified: commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/verifier/statics/Pass3aVerifier.java
URL: http://svn.apache.org/viewvc/commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/verifier/statics/Pass3aVerifier.java?rev=1697738&r1=1697737&r2=1697738&view=diff
==============================================================================
--- commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/verifier/statics/Pass3aVerifier.java (original)
+++ commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/verifier/statics/Pass3aVerifier.java Tue Aug 25 17:01:38 2015
@@ -126,12 +126,12 @@ public final class Pass3aVerifier extend
      * The one and only InstructionList object used by an instance of this class.
      * It's here for performance reasons by do_verify() and its callees.
      */    
-    InstructionList instructionList;
+    private InstructionList instructionList;
     /**
      * The one and only Code object used by an instance of this class.
      *  It's here for performance reasons by do_verify() and its callees.
      */    
-    Code code;
+    private Code code;
 
     /** Should only be instantiated by a Verifier. */
     public Pass3aVerifier(Verifier owner, int method_no){