Skip to content

Commit

Permalink
Fix sonar issue
Browse files Browse the repository at this point in the history
  • Loading branch information
nroduit committed Feb 16, 2024
1 parent 214917a commit 1f81ddf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ private void getThickness(final JSliderW sliderThickness) {
buf.append(" (");
double thickness = DicomMediaUtils.getThickness(fimg, limg);
if (thickness <= 0.0) {
thickness = max - min;
thickness = (double) max - min;
}
buf.append(DecFormatter.allNumber(thickness));
buf.append(" ");
Expand Down

0 comments on commit 1f81ddf

Please sign in to comment.