Skip to content

Commit

Permalink
Merge branch 'java7' into java11
Browse files Browse the repository at this point in the history
  • Loading branch information
rjolly committed Jun 15, 2022
2 parents e6af41f + d98c09c commit b27814c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion notepad/src/linoleum/notepad/Frame.java
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,7 @@ public void propertyChange(final PropertyChangeEvent evt) {

void setNumber(final int n) {
if (length > 0) {
setProgress(100 * n / length);
setProgress((int)(100l * n / length));
}
}

Expand Down

0 comments on commit b27814c

Please sign in to comment.