Skip to content

Commit bc77472

Browse files
committed
remove override for persistent array
1 parent 4624829 commit bc77472

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

engine/src/main/battlecode/world/RobotControllerImpl.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1134,7 +1134,6 @@ public int readSharedArray(int index) throws GameActionException {
11341134
return this.gameWorld.readSharedArray(index, this.getTeam());
11351135
}
11361136

1137-
@Override
11381137
public void writePersistentArray(int index, int value) throws GameActionException {
11391138
if (!this.getType().isRatKingType()) {
11401139
throw new GameActionException(CANT_DO_THAT, "Only rat kings can write to the persistent array!");
@@ -1149,7 +1148,6 @@ public void writePersistentArray(int index, int value) throws GameActionExceptio
11491148
this.gameWorld.writePersistentArray(index, value, this.getTeam());
11501149
}
11511150

1152-
@Override
11531151
public int readPersistentArray(int index) throws GameActionException {
11541152
return this.gameWorld.readPersistentArray(index, this.getTeam());
11551153
}

0 commit comments

Comments
 (0)