12
0

Update stuff
Alle Prüfungen waren erfolgreich
SteamWarCI Build successful

Dieser Commit ist enthalten in:
yoyosource 2022-03-09 20:09:41 +01:00
Ursprung d470e951f8
Commit 4dedf82458
2 geänderte Dateien mit 0 neuen und 40 gelöschten Zeilen

Datei anzeigen

@ -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);
}

Datei anzeigen

@ -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 <https://www.gnu.org/licenses/>.
*/
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);
}
}