Skip to content

Commit

Permalink
make WARNING_THRESHOLD static
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolaspayette committed Feb 7, 2025
1 parent 28d3c5d commit 2bb1645
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class EquirectangularDistanceCalculator extends CoordinateBasedDistanceCa

static final Logger LOGGER =
Logger.getLogger(EquirectangularDistanceCalculator.class.getName());
private final double WARNING_THRESHOLD = 250;
private static final double WARNING_THRESHOLD = 250;

public EquirectangularDistanceCalculator(final GridExtent gridExtent) {
super(gridExtent);
Expand Down

0 comments on commit 2bb1645

Please sign in to comment.