Skip to content

Commit

Permalink
PMD
Browse files Browse the repository at this point in the history
  • Loading branch information
Brent committed Sep 14, 2023
1 parent 0c1e1f9 commit 71d6bd3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public FontConfigurer(String key, String name, Font val, int[] sizes) {
public FontConfigurer(String key, String name, Font val, Integer[] sizes) {
super(key, name, val);
this.sizes = new int[sizes.length];
for(int i = 0; i < sizes.length; i++) {
for (int i = 0; i < sizes.length; i++) {
this.sizes[i] = sizes[i];
}
}
Expand Down

0 comments on commit 71d6bd3

Please sign in to comment.