src/share/classes/jdk/internal/org/objectweb/asm/tree/InsnList.java

Print this page

        

@@ -125,11 +125,11 @@
      * time it is called. Once the cache is built, this method run in constant
      * time. This cache is invalidated by all the methods that modify the list.
      *
      * @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) {
             throw new IndexOutOfBoundsException();
         }