Skip to content

Commit

Permalink
Opportunistic fix missing synchronized in overridden method
Browse files Browse the repository at this point in the history
  • Loading branch information
ZacSweers committed Nov 27, 2017
1 parent 6a45aa4 commit 44b362f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ static final class Termination extends Throwable {
super("No further exceptions");
}

@Override public Throwable fillInStackTrace() {
@Override public synchronized Throwable fillInStackTrace() {
return this;
}
}
Expand Down

0 comments on commit 44b362f

Please sign in to comment.