Skip to content

Commit

Permalink
Merge pull request #41 from privat/deprecated-new-integer
Browse files Browse the repository at this point in the history
Remove usage of new integer
  • Loading branch information
privat authored Jul 9, 2024
2 parents 2a8bb8a + 13212dd commit b93dcea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rars/venus/NumberDisplayBaseChooser.java
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ public String formatNumber(int value) {
if (base == NumberDisplayBaseChooser.HEXADECIMAL) {
return Binary.intToHexString(value);
} else {
return new Integer(value).toString();
return Integer.toString(value);
}
}

Expand Down

0 comments on commit b93dcea

Please sign in to comment.