Remove sysout
This commit is contained in:
parent
ffb386fcc7
commit
be8350a403
1 changed files with 0 additions and 3 deletions
|
@ -32,9 +32,6 @@ public class BinaryRoutePlanner {
|
||||||
|
|
||||||
|
|
||||||
public static double squareRootDist(int x1, int y1, int x2, int y2) {
|
public static double squareRootDist(int x1, int y1, int x2, int y2) {
|
||||||
if(MapUtils.squareRootDist31(x1, y1, x2, y2) - MapUtils.measuredDist31(x1, y1, x2, y2) > 5) {
|
|
||||||
System.out.println("x1 = " + x1 + " x2" + x2 + " y1 " + y1 + " y2 " + y2);
|
|
||||||
}
|
|
||||||
return MapUtils.squareRootDist31(x1, y1, x2, y2);
|
return MapUtils.squareRootDist31(x1, y1, x2, y2);
|
||||||
// return MapUtils.measuredDist31(x1, y1, x2, y2);
|
// return MapUtils.measuredDist31(x1, y1, x2, y2);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue