Use sector preset name for maps if possible

This commit is contained in:
Anuken
2020-12-27 16:20:06 -05:00
parent f174d1b2b4
commit 990562dd71
2 changed files with 1 additions and 12 deletions
@@ -12,17 +12,6 @@ public class PowerGraph{
private static final Seq<Building> outArray1 = new Seq<>();
private static final Seq<Building> outArray2 = new Seq<>();
private static final IntSet closedSet = new IntSet();
private static final PowerGraph nullGraph = new PowerGraph(){
@Override
public void add(Building build){
throw new RuntimeException("cannot add to null graph");
}
@Override
public void addGraph(PowerGraph graph){
throw new RuntimeException("cannot add to null graph");
}
};
private final Seq<Building> producers = new Seq<>(false);
private final Seq<Building> consumers = new Seq<>(false);