Author: sebb Date: Tue Aug 25 17:03:39 2015 New Revision: 1697739 URL: http://svn.apache.org/r1697739 Log: No need for these to be package protected
Modified: commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/generic/InstructionHandle.java Modified: commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/generic/InstructionHandle.java URL: http://svn.apache.org/viewvc/commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/generic/InstructionHandle.java?rev=1697739&r1=1697738&r2=1697739&view=diff ============================================================================== --- commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/generic/InstructionHandle.java (original) +++ commons/proper/bcel/trunk/src/main/java/org/apache/commons/bcel6/generic/InstructionHandle.java Tue Aug 25 17:03:39 2015 @@ -44,10 +44,9 @@ import org.apache.commons.bcel6.classfil */ public class InstructionHandle { - // TODO make private - InstructionHandle next; - InstructionHandle prev; - Instruction instruction; + private InstructionHandle next; + private InstructionHandle prev; + private Instruction instruction; /** * @deprecated will be made private; do not access directly, use getter/setter