Remove unnecessary catch block

This commit is contained in:
YOUNG HO CHA 2020-09-12 13:57:35 +09:00
parent 6ac9f7d840
commit 20720d6a40
1 changed files with 0 additions and 4 deletions

View File

@ -797,10 +797,6 @@ public final class TypeAdapters {
}
} catch (IllegalAccessException e) {
throw new AssertionError(e);
} catch (NullPointerException e) {
throw new AssertionError(e);
} catch (ExceptionInInitializerError e) {
throw new AssertionError(e);
}
}
@Override public T read(JsonReader in) throws IOException {