1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-16 11:21:18 +03:00

Removed leftover debug print

This commit is contained in:
Cristian Maglie
2014-12-10 11:01:45 +01:00
parent 35848e09a8
commit 391d3380ee

View File

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