Print errors while reloading externally edited files

These exceptions were silently dropped, which is pretty much never a
good idea.
This commit is contained in:
Matthijs Kooijman 2015-12-08 19:44:57 +01:00 committed by Martino Facchin
parent 055cfc8df0
commit 283ccc150d
1 changed files with 1 additions and 1 deletions

View File

@ -614,7 +614,7 @@ public class Base {
activeEditor.getCurrentTab().getTextArea().setCaretPosition(previousCaretPosition);
}
} catch (IOException e) {
// noop
System.err.println(e);
}
}