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:
@ -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) {
|
||||
|
Reference in New Issue
Block a user