Skip to content

Commit

Permalink
Add final keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
adinauer committed Oct 3, 2022
1 parent 2f4462c commit f6b0dc7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ private static final class FrameCounts {
private final int slowFrames;
private final int frozenFrames;

private FrameCounts(int totalFrames, int slowFrames, int frozenFrames) {
private FrameCounts(final int totalFrames, final int slowFrames, final int frozenFrames) {
this.totalFrames = totalFrames;
this.slowFrames = slowFrames;
this.frozenFrames = frozenFrames;
Expand Down

0 comments on commit f6b0dc7

Please sign in to comment.