Author: ggregory Date: Fri Jul 24 15:28:32 2015 New Revision: 1692539 URL: http://svn.apache.org/r1692539 Log: [BCEL-219] Make org.apache.bcel.classfile.ConstantPool.ConstantPool(DataInput) public.
Modified: commons/proper/bcel/trunk/src/changes/changes.xml commons/proper/bcel/trunk/src/main/java/org/apache/bcel/classfile/ConstantPool.java Modified: commons/proper/bcel/trunk/src/changes/changes.xml URL: http://svn.apache.org/viewvc/commons/proper/bcel/trunk/src/changes/changes.xml?rev=1692539&r1=1692538&r2=1692539&view=diff ============================================================================== --- commons/proper/bcel/trunk/src/changes/changes.xml (original) +++ commons/proper/bcel/trunk/src/changes/changes.xml Fri Jul 24 15:28:32 2015 @@ -63,6 +63,9 @@ The <action> type attribute can be add,u <body> <release version="6.0" date="TBA" description="Major release with Java 7 and 8 support"> + <action issue="BCEL-219" type="update" due-to="Maxim Degtyarev"> + Make org.apache.bcel.classfile.ConstantPool.ConstantPool(DataInput) public. + </action> <action issue="BCEL-209" type="fix" due-to="Mark Roberts"> Bug fixes and improvements to InvokeDynamic and BootStrapMethods implementation </action> Modified: commons/proper/bcel/trunk/src/main/java/org/apache/bcel/classfile/ConstantPool.java URL: http://svn.apache.org/viewvc/commons/proper/bcel/trunk/src/main/java/org/apache/bcel/classfile/ConstantPool.java?rev=1692539&r1=1692538&r2=1692539&view=diff ============================================================================== --- commons/proper/bcel/trunk/src/main/java/org/apache/bcel/classfile/ConstantPool.java (original) +++ commons/proper/bcel/trunk/src/main/java/org/apache/bcel/classfile/ConstantPool.java Fri Jul 24 15:28:32 2015 @@ -57,7 +57,7 @@ public class ConstantPool implements Clo * @throws IOException * @throws ClassFormatException */ - ConstantPool(DataInput input) throws IOException, ClassFormatException { + public ConstantPool(DataInput input) throws IOException, ClassFormatException { byte tag; int constant_pool_count = input.readUnsignedShort(); constant_pool = new Constant[constant_pool_count];