summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2015-01-18 01:48:58 +0100
committerJérémy Zurcher <jeremy@asynk.ch>2015-01-18 01:48:58 +0100
commitff5e362003829d59dcdf518c69d5765d19299ccd (patch)
tree405b698f7ada25d17ec54914e1504670b771b72c /core
parentb005d66da410166cf88e7f38f5df587a0f07e0b0 (diff)
downloadRustAndDust-ff5e362003829d59dcdf518c69d5765d19299ccd.zip
RustAndDust-ff5e362003829d59dcdf518c69d5765d19299ccd.tar.gz
PossiblePaths: fix double dispose()
Diffstat (limited to 'core')
-rw-r--r--core/src/ch/asynk/tankontank/engine/PossiblePaths.java1
1 files changed, 0 insertions, 1 deletions
diff --git a/core/src/ch/asynk/tankontank/engine/PossiblePaths.java b/core/src/ch/asynk/tankontank/engine/PossiblePaths.java
index fa27033..163df7c 100644
--- a/core/src/ch/asynk/tankontank/engine/PossiblePaths.java
+++ b/core/src/ch/asynk/tankontank/engine/PossiblePaths.java
@@ -67,7 +67,6 @@ public class PossiblePaths implements Disposable, Iterable<Vector3>
this.distance = -1;
this.orientation = Orientation.KEEP;
for (Path path : this.paths) path.dispose();
- for (Path path : this.filteredPaths) path.dispose();
this.tiles.clear();
this.stack.clear();
this.ctrlTiles.clear();