Skip to content
Snippets Groups Projects
Commit 04291fc8 authored by Piers Williams's avatar Piers Williams
Browse files

Make two variables private

parent ba876a3a
No related branches found
No related tags found
No related merge requests found
......@@ -27,7 +27,7 @@ import static com.fossgalaxy.games.asteroids.battle.Constants.*;
public class Jenetics {
static final boolean[] USING = new boolean[N_PARAMS];
private static final boolean[] USING = new boolean[N_PARAMS];
static {
Arrays.fill(USING, false);
......@@ -38,7 +38,7 @@ public class Jenetics {
USING[BULLET_KILL_SHIP] = true;
};
static final List<Supplier<BattleController>> controllerFunctions = Arrays.asList(
private static final List<Supplier<BattleController>> controllerFunctions = Arrays.asList(
PiersMCTS::new,
// MMMCTS::new,
RotateAndShoot::new
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment