Hide item deserialization errors unless using development branch (fixes #550)

This commit is contained in:
Intelli 2024-06-17 18:49:43 -06:00
parent 957bf70c26
commit aaa7a3536a
2 changed files with 13 additions and 4 deletions

View file

@ -65,7 +65,7 @@ public class EntityStatement {
resultSet.close();
}
catch (Exception e) { // only display this exception on development branch
catch (Exception e) { // only display exception on development branch
if (!ConfigHandler.EDITION_BRANCH.contains("-dev")) {
e.printStackTrace();
}