remove debug message from GeoPointParserUtil.areCloseEnough()

This commit is contained in:
Hans-Christoph Steiner 2015-01-29 15:05:13 +01:00
parent 30398fad48
commit 6f2e0029a5

View file

@ -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;
} }