From 2b6f71eebffd83fe8f1b3b655ccb0fc9300ce481 Mon Sep 17 00:00:00 2001 From: gsd Date: Fri, 20 Oct 2023 17:02:54 +0300 Subject: [PATCH] donate stats fix v5 --- src/main/java/app/entities/db/DonateStat.java | 5 ----- 1 file changed, 5 deletions(-) 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?"Была продлена":""; }