0
0
mirror of https://github.com/Wurst-Imperium/Wurst7.git synced 2024-09-19 17:02:13 +02:00

Add missing catch for JsonParseExceptions

This commit is contained in:
Alexander01998 2019-06-07 17:50:28 +02:00
parent 061db0b259
commit 2fe7e88a43

View File

@ -113,7 +113,7 @@ public final class AnalyticsConfigFile
{
JsonUtils.PRETTY_GSON.toJson(json, writer);
}catch(IOException e)
}catch(IOException | JsonParseException e)
{
System.out.println("Couldn't save " + path.getFileName());
e.printStackTrace();