File tree Expand file tree Collapse file tree
engine/src/main/battlecode/world Expand file tree Collapse file tree Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments