Skip to content

Commit dee5884

Browse files
Print errors while reloading externally edited files
These exceptions were silently dropped, which is pretty much never a good idea.
1 parent a118f64 commit dee5884

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/processing/app/Base.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -616,7 +616,7 @@ protected void handleActivated(Editor whichEditor) {
616616
activeEditor.getCurrentTab().getTextArea().setCaretPosition(previousCaretPosition);
617617
}
618618
} catch (IOException e) {
619-
// noop
619+
System.err.println(e);
620620
}
621621
}
622622

0 commit comments

Comments
 (0)