Removed leftover debug print

This commit is contained in:
Cristian Maglie 2014-12-10 11:01:45 +01:00
parent 35848e09a8
commit 391d3380ee
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ public class TextAreaFIFO extends JTextArea implements DocumentListener {
len = getDocument().getLength();
if (len > maxChars) {
int n = len - maxChars;
System.out.println("trimDocument: remove " + n + " chars");
//System.out.println("trimDocument: remove " + n + " chars");
try {
getDocument().remove(0, n);
} catch (BadLocationException ble) {