Remove debugging

This commit is contained in:
fullwall 2020-06-12 21:18:52 +08:00
parent c5bcfdc8cd
commit 50218336c5

View File

@ -444,7 +444,6 @@ public class LinearWaypointProvider implements EnumerableWaypointProvider {
@Override
public Waypoint next() {
System.out.println(idx);
return waypoints.get(idx--);
}
@ -465,7 +464,6 @@ public class LinearWaypointProvider implements EnumerableWaypointProvider {
@Override
public Waypoint next() {
System.out.println(idx);
return waypoints.get(idx++);
}