diff --git a/domain/RobotType.java b/domain/RobotType.java deleted file mode 100644 index dbab225..0000000 --- a/domain/RobotType.java +++ /dev/null @@ -1,16 +0,0 @@ -package domain; - -public enum RobotType { - R2D2("R2D2"), - C3PO("C3PO"), - NEXUS6("Nexus-6"); - - private final String type; - private RobotType(String type){ - this.type = type; -} - @Override - public String toString(){ - return "Type: " + type; - } -}