mirror of
https://github.com/arduino/Arduino.git
synced 2025-03-21 12:29:23 +01:00
Removed leftover debug print
This commit is contained in:
parent
35848e09a8
commit
391d3380ee
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user