Skip to content

Commit b74f29d

Browse files
authored
Merge pull request #123 from battlecode/hotfix-saturn
Remove println deprecation message
2 parents c051d7f + 9f94250 commit b74f29d

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

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

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -305,22 +305,19 @@ public boolean sensePassability(MapLocation loc) throws GameActionException {
305305
@Override
306306
public double senseCooldownMultiplier(MapLocation loc) throws GameActionException{
307307
assertCanSenseLocation(loc);
308-
System.out.println("senseBoostTurns is a deprecated method! It is at risk of being removed.");
309308
return this.gameWorld.getCooldownMultiplier(loc, getTeam());
310309
}
311310

312311
@Override
313312
public int senseDestabilizeTurns(MapLocation loc) throws GameActionException{
314313
assertCanSenseLocation(loc);
315-
System.out.println("senseBoostTurns is a deprecated method! It is at risk of being removed.");
316314
int oldestDestabilize = this.gameWorld.getOldestDestabilize(loc, getTeam());
317315
return oldestDestabilize == -1 ? -1 : oldestDestabilize - getRoundNum();
318316
}
319317

320318
@Override
321319
public int senseBoostTurns(MapLocation loc) throws GameActionException{
322320
assertCanSenseLocation(loc);
323-
System.out.println("senseBoostTurns is a deprecated method! It is at risk of being removed.");
324321
int oldestBoost = this.gameWorld.getOldestBoost(loc, getTeam());
325322
return oldestBoost == -1 ? -1 : oldestBoost - getRoundNum();
326323
}

0 commit comments

Comments
 (0)