diff --git a/src/main/java/app/entities/db/DonateStat.java b/src/main/java/app/entities/db/DonateStat.java index 4160bc9..6214e47 100644 --- a/src/main/java/app/entities/db/DonateStat.java +++ b/src/main/java/app/entities/db/DonateStat.java @@ -38,25 +38,21 @@ public class DonateStat { //потом бля } - @JsonValue public Integer getRubles() { if (this.giveMethod == VipGiveMethod.QIWI) return Integer.valueOf(this.reserved.split(";")[0].split("=")[1]); return 0; } - @JsonValue public Integer getTF2Keys() { if (this.giveMethod == VipGiveMethod.STEAM) return Integer.valueOf(this.reserved.split(";")[0].split("=")[1]); return 0; } - @JsonValue public Integer getTF2Refs() { if (this.giveMethod == VipGiveMethod.STEAM) return Integer.valueOf(this.reserved.split(";")[1].split("=")[1]); return 0; } - @JsonValue public String getStatus() { switch (this.giveMethod) { case FREE -> { @@ -80,7 +76,6 @@ public class DonateStat { return "Неизвестно"; } - @JsonValue public String getBeExtended() { return extended?"Была продлена":""; }