Skip to content

Commit

Permalink
Remove sout
Browse files Browse the repository at this point in the history
  • Loading branch information
alanocallaghan committed Nov 15, 2024
1 parent 9540dd2 commit 78e75b3
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,6 @@ public double getPreferredDownsample(PixelCalibration cal) {
* @return The exact downsample, unless it's close to an integer, in which case the integer.
*/
static double getPreferredDownsample(double currentPixelSize, double requestedPixelSize) {
System.out.println(requestedPixelSize);
double downsample = requestedPixelSize / currentPixelSize;
double downsampleRounded = Math.round(downsample);
if (GeneralTools.almostTheSame(downsample, Math.round(downsample), 0.01)) {
Expand Down

0 comments on commit 78e75b3

Please sign in to comment.