Small Json Util Fix

This commit is contained in:
Driftay 2020-03-25 02:41:50 -04:00
parent 6540e47ff5
commit 447860ab2d
1 changed files with 1 additions and 5 deletions

View File

@ -85,11 +85,7 @@ public class JSONUtils {
}
public static boolean saveJSONToFile(File f, Object toSave, Object token) throws IOException {
try {
return saveJSONToFile(f, toSave, token, gson);
} catch (Throwable var4) {
throw var4;
}
return saveJSONToFile(f, toSave, token, gson);
}
private static Type getTypeFromObject(Object object) {