Skip to content

Commit 391d338

Browse files
committed
Removed leftover debug print
1 parent 35848e0 commit 391d338

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/processing/app/debug/TextAreaFIFO.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public void trimDocument() {
6868
len = getDocument().getLength();
6969
if (len > maxChars) {
7070
int n = len - maxChars;
71-
System.out.println("trimDocument: remove " + n + " chars");
71+
//System.out.println("trimDocument: remove " + n + " chars");
7272
try {
7373
getDocument().remove(0, n);
7474
} catch (BadLocationException ble) {

0 commit comments

Comments
 (0)