--- old/src/share/classes/jdk/internal/org/objectweb/asm/tree/InnerClassNode.java Thu Apr 25 10:10:10 2013 +++ new/src/share/classes/jdk/internal/org/objectweb/asm/tree/InnerClassNode.java Thu Apr 25 10:10:09 2013 @@ -75,8 +75,8 @@ /** * The internal name of the class to which the inner class belongs (see - * {@link jdk.internal.org.objectweb.asm.Type#getInternalName() getInternalName}). May - * be null. + * {@link jdk.internal.org.objectweb.asm.Type#getInternalName() getInternalName}). May be + * null. */ public String outerName; @@ -95,24 +95,23 @@ /** * Constructs a new {@link InnerClassNode}. * - * @param name the internal name of an inner class (see - * {@link jdk.internal.org.objectweb.asm.Type#getInternalName() getInternalName}). - * @param outerName the internal name of the class to which the inner class - * belongs (see - * {@link jdk.internal.org.objectweb.asm.Type#getInternalName() getInternalName}). - * May be null. - * @param innerName the (simple) name of the inner class inside its - * enclosing class. May be null for anonymous inner - * classes. - * @param access the access flags of the inner class as originally declared - * in the enclosing class. + * @param name + * the internal name of an inner class (see + * {@link jdk.internal.org.objectweb.asm.Type#getInternalName() + * getInternalName}). + * @param outerName + * the internal name of the class to which the inner class + * belongs (see {@link jdk.internal.org.objectweb.asm.Type#getInternalName() + * getInternalName}). May be null. + * @param innerName + * the (simple) name of the inner class inside its enclosing + * class. May be null for anonymous inner classes. + * @param access + * the access flags of the inner class as originally declared in + * the enclosing class. */ - public InnerClassNode( - final String name, - final String outerName, - final String innerName, - final int access) - { + public InnerClassNode(final String name, final String outerName, + final String innerName, final int access) { this.name = name; this.outerName = outerName; this.innerName = innerName; @@ -122,7 +121,8 @@ /** * Makes the given class visitor visit this inner class. * - * @param cv a class visitor. + * @param cv + * a class visitor. */ public void accept(final ClassVisitor cv) { cv.visitInnerClass(name, outerName, innerName, access);