From 4dedf824586c6a2eb61bdd339463fb28203732b8 Mon Sep 17 00:00:00 2001 From: yoyosource Date: Wed, 9 Mar 2022 20:09:41 +0100 Subject: [PATCH] Update stuff --- SpigotCore_Main/src/de/steamwar/sql/Elo.java | 4 --- .../src/de/steamwar/sql/Season.java | 36 ------------------- 2 files changed, 40 deletions(-) delete mode 100644 SpigotCore_Main/src/de/steamwar/sql/Season.java diff --git a/SpigotCore_Main/src/de/steamwar/sql/Elo.java b/SpigotCore_Main/src/de/steamwar/sql/Elo.java index 07e8c47..fb78af4 100644 --- a/SpigotCore_Main/src/de/steamwar/sql/Elo.java +++ b/SpigotCore_Main/src/de/steamwar/sql/Elo.java @@ -26,10 +26,6 @@ public class Elo { return Provider.impl.getCurrentElo(userId, gameMode); } - public static int getElo(int season, int userId, String gameMode){ - return Provider.impl.getElo(season, userId, gameMode); - } - public static void setElo(int userId, String gameMode, int elo){ Provider.impl.setElo(userId, gameMode, elo); } diff --git a/SpigotCore_Main/src/de/steamwar/sql/Season.java b/SpigotCore_Main/src/de/steamwar/sql/Season.java deleted file mode 100644 index 9075ab4..0000000 --- a/SpigotCore_Main/src/de/steamwar/sql/Season.java +++ /dev/null @@ -1,36 +0,0 @@ -/* - * This file is a part of the SteamWar software. - * - * Copyright (C) 2020 SteamWar.de-Serverteam - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - */ - -package de.steamwar.sql; - -public class Season { - private Season() {} - - public static int getSeason() { - return Provider.impl.getCurrentSeason(); - } - - public static String convertSeasonToString(int season){ - return Provider.impl.convertSeasonNumberToString(season); - } - - public static int convertSeasonToNumber(String season){ - return Provider.impl.convertSeasonStringToNumber(season); - } -}