--- old/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/classfile/StackMapEntry.java 2020-01-16 18:01:12.461106331 +0000 +++ new/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/classfile/StackMapEntry.java 2020-01-16 18:01:11.965094147 +0000 @@ -31,7 +31,6 @@ * local variables and the the of stack items at a given byte code offset. * See CLDC specification 5.3.1.2 * - * @version $Id$ * @see StackMap * @see StackMapType */ @@ -142,7 +141,7 @@ * @param file Output file stream * @throws IOException */ - public final void dump( final DataOutputStream file ) throws IOException { + public void dump( final DataOutputStream file ) throws IOException { file.write(frame_type); if (frame_type >= Const.SAME_FRAME && frame_type <= Const.SAME_FRAME_MAX) { // nothing to be done @@ -182,7 +181,7 @@ * @return String representation. */ @Override - public final String toString() { + public String toString() { final StringBuilder buf = new StringBuilder(64); buf.append("("); if (frame_type >= Const.SAME_FRAME && frame_type <= Const.SAME_FRAME_MAX) { @@ -426,7 +425,7 @@ /** * @return Constant pool used by this object. */ - public final ConstantPool getConstantPool() { + public ConstantPool getConstantPool() { return constant_pool; } @@ -434,7 +433,7 @@ /** * @param constant_pool Constant pool to be used for this object. */ - public final void setConstantPool( final ConstantPool constant_pool ) { + public void setConstantPool( final ConstantPool constant_pool ) { this.constant_pool = constant_pool; } }