Skip to content

Commit 283ccc1

Browse files
matthijskooijmanfacchinm
authored andcommitted
Print errors while reloading externally edited files
These exceptions were silently dropped, which is pretty much never a good idea.
1 parent 055cfc8 commit 283ccc1

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
@@ -614,7 +614,7 @@ protected void handleActivated(Editor whichEditor) {
614614
activeEditor.getCurrentTab().getTextArea().setCaretPosition(previousCaretPosition);
615615
}
616616
} catch (IOException e) {
617-
// noop
617+
System.err.println(e);
618618
}
619619
}
620620

0 commit comments

Comments
 (0)