From 283ccc150d3afec675c87d0c3da11e42a633b2d1 Mon Sep 17 00:00:00 2001 From: Matthijs Kooijman Date: Tue, 8 Dec 2015 19:44:57 +0100 Subject: [PATCH] Print errors while reloading externally edited files These exceptions were silently dropped, which is pretty much never a good idea. --- app/src/processing/app/Base.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/processing/app/Base.java b/app/src/processing/app/Base.java index f2a984679..42741ea4d 100644 --- a/app/src/processing/app/Base.java +++ b/app/src/processing/app/Base.java @@ -614,7 +614,7 @@ public class Base { activeEditor.getCurrentTab().getTextArea().setCaretPosition(previousCaretPosition); } } catch (IOException e) { - // noop + System.err.println(e); } }