< prev index next >

src/java.xml/share/classes/com/sun/org/apache/bcel/internal/classfile/ConstantDynamic.java

Print this page

        

*** 78,94 **** * * Note that this method is a functional duplicate of getClassIndex * for use by ConstantInvokeDynamic. * @since 6.0 */ ! public final int getBootstrapMethodAttrIndex() { return super.getClassIndex(); // AKA bootstrap_method_attr_index } /** * @return String representation */ @Override ! public final String toString() { return super.toString().replace("class_index", "bootstrap_method_attr_index"); } } --- 78,94 ---- * * Note that this method is a functional duplicate of getClassIndex * for use by ConstantInvokeDynamic. * @since 6.0 */ ! public int getBootstrapMethodAttrIndex() { return super.getClassIndex(); // AKA bootstrap_method_attr_index } /** * @return String representation */ @Override ! public String toString() { return super.toString().replace("class_index", "bootstrap_method_attr_index"); } }
< prev index next >