--- old/src/share/classes/jdk/internal/org/objectweb/asm/ClassWriter.java 2013-03-14 18:19:41.733694055 +0530 +++ new/src/share/classes/jdk/internal/org/objectweb/asm/ClassWriter.java 2013-03-14 18:19:41.581693308 +0530 @@ -1594,7 +1594,7 @@ /** * Returns the common super type of the two given types. The default - * implementation of this method loads the two given classes and uses + * implementation of this method loads the two given classes and uses * the java.lang.Class methods to find the common super class. It can be * overridden to compute this common super type in other ways, in particular * without actually loading any class, or to take into account the class --- old/src/share/classes/jdk/internal/org/objectweb/asm/MethodVisitor.java 2013-03-14 18:19:42.473697727 +0530 +++ new/src/share/classes/jdk/internal/org/objectweb/asm/MethodVisitor.java 2013-03-14 18:19:42.321696972 +0530 @@ -63,9 +63,9 @@ * called in the following order: [ visitAnnotationDefault ] ( * visitAnnotation | visitParameterAnnotation | * visitAttribute )* [ visitCode ( visitFrame | - * visitXInsn | visitLabel | visitTryCatchBlock | + * visitXInsn | visitLabel | visitTryCatchBlock | * visitLocalVariable | visitLineNumber )* visitMaxs ] - * visitEnd. In addition, the visitXInsn + * visitEnd. In addition, the visitXInsn * and visitLabel methods must be called in the sequential order of * the bytecode instructions of the visited code, visitTryCatchBlock * must be called before the labels passed as arguments have been @@ -216,7 +216,7 @@ * the same as the locals in the previous frame, except that the last 1-3 * locals are absent and with the empty stack (nLocals is 1, * 2 or 3).
  • {@link Opcodes#F_FULL} representing complete frame - * data.
  • + * data. * * @param type the type of this stack map frame. Must be * {@link Opcodes#F_NEW} for expanded frames, or --- old/src/share/classes/jdk/internal/org/objectweb/asm/Type.java 2013-03-14 18:19:43.049700581 +0530 +++ new/src/share/classes/jdk/internal/org/objectweb/asm/Type.java 2013-03-14 18:19:42.897699830 +0530 @@ -412,8 +412,8 @@ * @return the size of the arguments of the method (plus one for the * implicit this argument), argSize, and the size of its return * value, retSize, packed into a single int i = - * (argSize << 2) | retSize (argSize is therefore equal - * to i >> 2, and retSize to i & 0x03). + * (argSize {@literal <<} 2) | retSize (argSize is therefore equal + * to i {@literal >>} 2, and retSize to i {@literal &} 0x03). */ public static int getArgumentsAndReturnSizes(final String desc) { int n = 1; @@ -615,9 +615,9 @@ * * @return the size of the arguments (plus one for the implicit this * argument), argSize, and the size of the return value, retSize, - * packed into a single int i = (argSize << 2) | retSize - * (argSize is therefore equal to i >> 2, and retSize to - * i & 0x03). + * packed into a single int i = (argSize {@literal <<} 2) | retSize + * (argSize is therefore equal to i {@literal >>} 2, and retSize to + * i {@literal &} 0x03). */ public int getArgumentsAndReturnSizes() { return getArgumentsAndReturnSizes(getDescriptor()); --- old/src/share/classes/jdk/internal/org/objectweb/asm/tree/InsnList.java 2013-03-14 18:19:43.633703484 +0530 +++ new/src/share/classes/jdk/internal/org/objectweb/asm/tree/InsnList.java 2013-03-14 18:19:43.481702722 +0530 @@ -127,7 +127,7 @@ * * @param index the index of the instruction that must be returned. * @return the instruction whose index is given. - * @throws IndexOutOfBoundsException if (index < 0 || index >= size()). + * @throws IndexOutOfBoundsException if (index {@literal <} 0 || index {@literal >=} size()). */ public AbstractInsnNode get(final int index) { if (index < 0 || index >= size) { --- old/src/share/classes/jdk/internal/org/objectweb/asm/util/CheckClassAdapter.java 2013-03-14 18:19:44.201706300 +0530 +++ new/src/share/classes/jdk/internal/org/objectweb/asm/util/CheckClassAdapter.java 2013-03-14 18:19:44.049705542 +0530 @@ -134,7 +134,7 @@ * 00071 LinkedBlockingQueue$Itr . I . . . . . . : * ILOAD 1 * 00072 ? - * INVOKESPECIAL java/lang/Integer. (I)V + * INVOKESPECIAL java/lang/Integer.{@literal } (I)V * ... * *