Skip to content

Commit 5e55d05

Browse files
committed
Remove useless comment
1 parent e510dd8 commit 5e55d05

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

astar.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,6 @@ var astar = {
155155
var x = (node1.longRad - node0.longRad) * Math.cos((node0.latRad + node1.latRad)/2),
156156
y = node1.latRad - node0.latRad,
157157
res = Math.sqrt(Math.pow(x, 2) + Math.pow(y, 2)) * 6371;
158-
//printErr("Distance from " + node0.name + " to " + node1.name + " = " + res);
159158
return res;
160159
}
161160
}

0 commit comments

Comments
 (0)