remove debug message from GeoPointParserUtil.areCloseEnough()
This commit is contained in:
parent
30398fad48
commit
6f2e0029a5
1 changed files with 0 additions and 1 deletions
|
@ -398,7 +398,6 @@ public class GeoPointParserUtil {
|
||||||
private static boolean areCloseEnough(double a, double b, long howClose) {
|
private static boolean areCloseEnough(double a, double b, long howClose) {
|
||||||
long aRounded = (long) Math.round(a * Math.pow(10, howClose));
|
long aRounded = (long) Math.round(a * Math.pow(10, howClose));
|
||||||
long bRounded = (long) Math.round(b * Math.pow(10, howClose));
|
long bRounded = (long) Math.round(b * Math.pow(10, howClose));
|
||||||
System.out.println("areCloseEnough: " + aRounded + ", " + bRounded);
|
|
||||||
return aRounded == bRounded;
|
return aRounded == bRounded;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue