Skip to content

Commit

Permalink
removed some unused machine flags and methods in MachineFlag enum
Browse files Browse the repository at this point in the history
  • Loading branch information
Trinsdar committed Jan 4, 2025
1 parent 7c9bcce commit 4edddd8
Showing 1 changed file with 0 additions and 28 deletions.
28 changes: 0 additions & 28 deletions common/src/main/java/muramasa/antimatter/machine/MachineFlag.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,8 @@ public enum MachineFlag {
STEAM,
MULTI, //Has structure
HATCH,
FAKE_INPUTS,
ITEM, //Can store items
ITEM_INPUT,
ITEM_OUTPUT,
CELL,
CELL_INPUT,
CELL_OUTPUT,
FLUID_INPUT,
FLUID_OUTPUT,
FLUID,
EU, //Needs power
RF, //Uses RF instead of EU
Expand All @@ -37,27 +30,6 @@ public enum MachineFlag {
PARTIAL_AMPS,
UNCULLED;

public static final MachineFlag[] VALUES;

static {
VALUES = values();
}

@Deprecated
public void add(Machine<?> machine) {
machine.addFlags(this);
}

@Deprecated
public void remove(Machine<?> machine) {
machine.removeFlags(this);
}

@Deprecated
public Set<Machine<?>> getTypes() {
return new HashSet<>(Machine.getTypes(this));
}

@Override
public String toString() {
return super.toString().toLowerCase();
Expand Down

0 comments on commit 4edddd8

Please sign in to comment.