Skip to content

Commit

Permalink
fix compiler warnings after update to Java 11
Browse files Browse the repository at this point in the history
Signed-off-by: Andre Bossert <[email protected]>
  • Loading branch information
anb0s committed Jan 15, 2022
1 parent 3a32a23 commit fec5132
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public String getString(int instId) {
if (instId == 0) {
return getString();
} else {
return getString() + (new Integer(instId)).toString();
return getString() + Integer.valueOf(instId).toString();
}
}
public static PreferenceEntry getFromId(int id) {
Expand Down

0 comments on commit fec5132

Please sign in to comment.