< prev index next >

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

Print this page

        

@@ -529,11 +529,11 @@
     }
 
     /**
      * Get a class attribute
      */
-    public byte getAttribute(Identifier name)[] {
+    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 >