We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfa6a39 commit f1e4085Copy full SHA for f1e4085
app/src/processing/app/ui/Editor.java
@@ -2306,9 +2306,7 @@ public void prepareRun() {
2306
2307
// Do this to advance/clear the terminal window / dos prompt / etc.
2308
// This may be useful especially when 'console.auto_clear' is false.
2309
- // TODO: use `console.message()` instead of `System.out.println()`?
2310
- // i.e. for (int i = 0; i < headPadding; i++) console.message("\n", false);
2311
- for (int i = 0; i < headPadding; i++) System.out.println();
+ for (int i = 0; i < headPadding; i++) console.message("\n", false);
2312
2313
// clear the console on each run, unless the user doesn't want to
2314
if (Preferences.getBoolean("console.auto_clear")) {
0 commit comments