Add lombok
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
package com.alttd.playershops.shop;
|
||||
|
||||
public abstract class AbstractShop {
|
||||
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
package com.alttd.playershops.shop;
|
||||
|
||||
import com.alttd.playershops.config.ShopMessageConfig;
|
||||
import com.alttd.playershops.config.ShopTypeConfig;
|
||||
|
||||
public enum ShopType {
|
||||
|
||||
@@ -9,10 +9,10 @@ public enum ShopType {
|
||||
GAMBLE,
|
||||
BARTER;
|
||||
|
||||
private final ShopMessageConfig shopMessageConfig;
|
||||
private final ShopTypeConfig shopTypeConfig;
|
||||
|
||||
ShopType() {
|
||||
this.shopMessageConfig = new ShopMessageConfig(toString());
|
||||
this.shopTypeConfig = new ShopTypeConfig(toString());
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user