< prev index next >

src/jdk.rmic/share/classes/sun/tools/java/BinaryClass.java

Print this page

        

*** 529,539 **** } /** * Get a class attribute */ ! public byte getAttribute(Identifier name)[] { for (BinaryAttribute att = atts ; att != null ; att = att.next) { if (att.name.equals(name)) { return att.data; } } --- 529,539 ---- } /** * Get a class attribute */ ! public byte[] getAttribute(Identifier name) { for (BinaryAttribute att = atts ; att != null ; att = att.next) { if (att.name.equals(name)) { return att.data; } }
< prev index next >