src/share/classes/javax/swing/text/html/AccessibleHTML.java

Print this page

        

*** 2738,2748 **** /** * Returns the index of the specified child, or -1 if * <code>child</code> isn't a valid child. */ public int indexOf(ElementInfo child) { ! ArrayList children = this.children; if (children != null) { return children.indexOf(child); } return -1; --- 2738,2748 ---- /** * Returns the index of the specified child, or -1 if * <code>child</code> isn't a valid child. */ public int indexOf(ElementInfo child) { ! ArrayList<ElementInfo> children = this.children; if (children != null) { return children.indexOf(child); } return -1;