Skip to content

Commit 5e07e5f

Browse files
committed
cleanup unused method
1 parent d62b738 commit 5e07e5f

File tree

3 files changed

+2
-13
lines changed

3 files changed

+2
-13
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ target/
55
.idea/
66
*.iml
77

8-
src/test/java/jbot
8+
src/test/java/jbot

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>jbwapi</groupId>
88
<artifactId>jbwapi</artifactId>
9-
<version>0.2</version>
9+
<version>0.2.1</version>
1010

1111
<properties>
1212
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

src/main/java/bwta/BWTA.java

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -29,17 +29,6 @@ public static void readMap(final Game gamePointer) {
2929
bwem = new BWEM(game);
3030
}
3131

32-
private static boolean walkableTile(final int x, final int y) {
33-
for (int sx=0; sx < 4; sx++) {
34-
for (int sy=0; sy < 4; sy++) {
35-
if (!game.isWalkable(x+sx, y+sx)) {
36-
return false;
37-
}
38-
}
39-
}
40-
return true;
41-
}
42-
4332
public static void analyze() {
4433
bwem.initialize();
4534

0 commit comments

Comments
 (0)