--- 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());