Skip to content

Commit

Permalink
Java 6 source compat
Browse files Browse the repository at this point in the history
  • Loading branch information
fullwall committed Aug 22, 2017
1 parent 0a6b954 commit 40e80c0
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -161,7 +161,9 @@ public void B_() {
private void clearProgress(AdvancementProgress progress) {
try {
PROGRESS_TRACKER_FIELD.set(progress, EMPTY_PROGRESS);
} catch (IllegalArgumentException | IllegalAccessException e) {
} catch (IllegalArgumentException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
}
}
Expand Down

0 comments on commit 40e80c0

Please sign in to comment.