Removed unnecessary return from noop onExit method

This commit is contained in:
Bokros Bálint 2016-05-14 13:04:16 +02:00
parent 367c313af3
commit f04b62ec78

View File

@ -19,7 +19,5 @@ public class Field extends cicaprojekt.Tile {
playerBase.pickZPM(this); playerBase.pickZPM(this);
} }
public void onExit(PlayerBase playerBase) { public void onExit(PlayerBase playerBase) {}
return;
}
} }