closed resources in savegame method of gamecontroller

This commit is contained in:
Marc Zwart 2018-03-20 13:52:23 +01:00
parent 4bc5a9bd61
commit 532a190587
2 changed files with 22 additions and 6 deletions

View file

@ -18,4 +18,13 @@ public final class StreamUtils {
}
}
public static void closeQuietly(AutoCloseable ac) {
if (ac != null) {
try {
ac.close();
}
catch (Exception e) {
}
}
}
}