fixed som codacy issus with board

This commit is contained in:
Tobydrama 2020-02-22 15:04:41 +01:00
parent 2f2d874ea7
commit 83a8dd35d8

View File

@ -19,7 +19,7 @@ public class Board {
* @param otherObjects a grid containing all the other Objects like flags and conveyor belts
* @param aliveRobots a list of all the robots that are currently alive
*/
public void Board(Grid walls, Grid otherObjects, ArrayList aliveRobots){
public Board(Grid walls, Grid otherObjects, ArrayList aliveRobots){
this.walls=walls;
this.otherObjects=otherObjects;
this.aliveRobots=aliveRobots;