--- old/src/share/classes/javax/swing/text/AbstractDocument.java 2014-06-10 11:51:28.000000000 -0700 +++ new/src/share/classes/javax/swing/text/AbstractDocument.java 2014-06-10 11:51:28.000000000 -0700 @@ -1809,7 +1809,7 @@ if (getAttributeCount() > 0) { out.println(""); // dump the attributes - Enumeration names = attributes.getAttributeNames(); + Enumeration names = attributes.getAttributeNames(); while (names.hasMoreElements()) { Object name = names.nextElement(); indent(out, indentAmount + 1); @@ -2193,7 +2193,7 @@ * Enumeration. * @return the children of the receiver as an Enumeration */ - public abstract Enumeration children(); + public abstract Enumeration children(); // --- serialization --------------------------------------------- @@ -2456,7 +2456,7 @@ * Enumeration. * @return the children of the receiver */ - public Enumeration children() { + public Enumeration children() { if(nchildren == 0) return null; @@ -2610,7 +2610,7 @@ * Enumeration. * @return the children of the receiver */ - public Enumeration children() { + public Enumeration children() { return null; }