--- old/src/java.base/share/classes/jdk/internal/org/objectweb/asm/util/TraceClassVisitor.java 2015-06-05 21:17:09.707465454 +0400 +++ new/src/java.base/share/classes/jdk/internal/org/objectweb/asm/util/TraceClassVisitor.java 2015-06-05 21:17:09.543465454 +0400 @@ -74,36 +74,34 @@ * visitor chain to trace the class that is visited at a given point in this * chain. This may be useful for debugging purposes. *

- * The trace printed when visiting the Hello class is the following: - *

+ * The trace printed when visiting the {@code Hello} class is the following: *

* - *
+ * 
{@code
  * // class version 49.0 (49) // access flags 0x21 public class Hello {
  *
  * // compiled from: Hello.java
  *
- * // access flags 0x1 public <init> ()V ALOAD 0 INVOKESPECIAL
- * java/lang/Object <init> ()V RETURN MAXSTACK = 1 MAXLOCALS = 1
+ * // access flags 0x1 public  ()V ALOAD 0 INVOKESPECIAL
+ * java/lang/Object  ()V RETURN MAXSTACK = 1 MAXLOCALS = 1
  *
  * // access flags 0x9 public static main ([Ljava/lang/String;)V GETSTATIC
- * java/lang/System out Ljava/io/PrintStream; LDC "hello"
+ * java/lang/System out Ljava/io/PrintStream; LDC "hello"
  * INVOKEVIRTUAL java/io/PrintStream println (Ljava/lang/String;)V RETURN
  * MAXSTACK = 2 MAXLOCALS = 1 }
- * 
+ * }
* - *
where Hello is defined by: - *

+ * where {@code Hello} is defined by: *

* - *
+ * 
{@code
  * public class Hello {
  *
  *     public static void main(String[] args) {
- *         System.out.println("hello");
+ *         System.out.println("hello");
  *     }
  * }
- * 
+ * }
* *
* @@ -137,7 +135,7 @@ * * @param cv * the {@link ClassVisitor} to which this visitor delegates - * calls. May be null. + * calls. May be {@code null}. * @param pw * the print writer to be used to print the class. */ @@ -150,7 +148,7 @@ * * @param cv * the {@link ClassVisitor} to which this visitor delegates - * calls. May be null. + * calls. May be {@code null}. * @param p * the object that actually converts visit events into text. * @param pw