Skip to content

Commit

Permalink
fix: replace "new Boolean()" with autoboxing for compatibility with n…
Browse files Browse the repository at this point in the history
…ew Java versions
  • Loading branch information
bjagg committed Sep 26, 2024
1 parent 63e5926 commit 3988b0c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public Role() {}
*/
public Role(String name, boolean selected) {
this.name = name;
this.selected = new Boolean(selected);
this.selected = selected;
}

/**
Expand Down

0 comments on commit 3988b0c

Please sign in to comment.