Add lombok

This commit is contained in:
Len
2022-07-04 11:04:13 +02:00
parent 5c9141003f
commit 10ea384164
9 changed files with 111 additions and 12 deletions
@@ -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