Merge pull request #55 from Toofifty/removelocation
remove unused Location enum
This commit is contained in:
@@ -1,19 +0,0 @@
|
|||||||
package com.toofifty.easygiantsfoundry.enums;
|
|
||||||
|
|
||||||
import lombok.Getter;
|
|
||||||
import lombok.RequiredArgsConstructor;
|
|
||||||
|
|
||||||
@Getter
|
|
||||||
@RequiredArgsConstructor
|
|
||||||
public enum Location {
|
|
||||||
GIANTS_FOUNDRY("Giants' Foundry"),
|
|
||||||
EVERYWHERE("Everywhere"),
|
|
||||||
NOWHERE("Nowhere");
|
|
||||||
|
|
||||||
private final String type;
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return type;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user