Skip to content

Commit

Permalink
Remove unnecessary catch block
Browse files Browse the repository at this point in the history
  • Loading branch information
ganadist committed Sep 12, 2020
1 parent ddee26e commit eba1415
Showing 1 changed file with 0 additions and 4 deletions.
Expand Up @@ -797,10 +797,6 @@ public EnumTypeAdapter(Class<T> classOfT) {
}
} 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 {
Expand Down

0 comments on commit eba1415

Please sign in to comment.