--- old/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/classfile/Field.java 2020-01-16 18:00:51.516591861 +0000 +++ new/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/classfile/Field.java 2020-01-16 18:00:51.027579849 +0000 @@ -33,7 +33,6 @@ * This class represents the field info structure, i.e., the representation * for a variable in the class. See JVM specification for details. * - * @version $Id$ */ public final class Field extends FieldOrMethod { @@ -104,7 +103,7 @@ /** * @return constant value associated with this field (may be null) */ - public final ConstantValue getConstantValue() { + public ConstantValue getConstantValue() { for (final Attribute attribute : super.getAttributes()) { if (attribute.getTag() == Const.ATTR_CONSTANT_VALUE) { return (ConstantValue) attribute; @@ -121,7 +120,7 @@ * @return String representation of field, including the signature. */ @Override - public final String toString() { + public String toString() { String name; String signature; String access; // Short cuts to constant pool @@ -149,7 +148,7 @@ /** * @return deep copy of this field */ - public final Field copy( final ConstantPool _constant_pool ) { + public Field copy( final ConstantPool _constant_pool ) { return (Field) copy_(_constant_pool); }