Index: javax/swing/text/GapContent.java =================================================================== RCS file: /cvsroot/classpath/classpath/javax/swing/text/GapContent.java,v retrieving revision 1.10 diff -u -r1.10 GapContent.java --- javax/swing/text/GapContent.java 3 May 2005 10:07:42 -0000 1.10 +++ javax/swing/text/GapContent.java 3 May 2005 19:50:32 -0000 @@ -170,7 +170,6 @@ // gap boundaries System.arraycopy(str.toCharArray(), 0, buffer, gapStart, strLen); gapStart += strLen; - dumpArray(); return null; } @@ -206,20 +205,9 @@ // now we simply have to enlarge the gap gapEnd += nitems; - dumpArray(); return null; } - private void dumpArray() - { - for (int i = 0; i < buffer.length; i++) { - if (i == gapStart) System.err.print('<'); - if (i == gapEnd) System.err.print('>'); - - System.err.print("'" + buffer[i] + "' "); - } - } - /** * Returns a piece of content as String. *