Run IntelliJ IDEA code formatter

This commit is contained in:
KingRainbow44
2023-03-31 17:19:26 -04:00
parent 5bf5fb07a2
commit 15e2f3ca34
917 changed files with 30030 additions and 22446 deletions

View File

@@ -4,13 +4,14 @@ import com.google.gson.annotations.SerializedName;
// Used in excels
public class ItemParamData {
@SerializedName(value="id", alternate={"itemId"})
@SerializedName(value = "id", alternate = {"itemId"})
private int id;
@SerializedName(value="count", alternate={"itemCount"})
@SerializedName(value = "count", alternate = {"itemCount"})
private int count;
public ItemParamData() {}
public ItemParamData() {
}
public ItemParamData(int id, int count) {
this.id = id;