mirror of
https://github.com/processing/processing4.git
synced 2026-02-03 21:59:20 +01:00
add newlines to the feedback from jikes error messages
This commit is contained in:
@@ -183,8 +183,9 @@ public class PdeCompiler implements PdeMessageConsumer {
|
||||
* and line number, which is then reported back to PdeEditor.
|
||||
*/
|
||||
public void message(String s) {
|
||||
//System.err.println("MSG: " + s);
|
||||
System.err.print(s);
|
||||
// This receives messages as full lines, so a newline needs
|
||||
// to be added as they're printed to the console.
|
||||
System.err.println(s);
|
||||
|
||||
// ignore cautions
|
||||
if (s.indexOf("Caution") != -1) return;
|
||||
|
||||
Reference in New Issue
Block a user