del unused

This commit is contained in:
Georg Reisinger 2021-04-18 20:52:47 +02:00
parent b234299e6b
commit 4c06425cd2

View File

@ -11,7 +11,6 @@ import java.io.IOException;
public class ConfigHelper { public class ConfigHelper {
public static String standartConfig = "conf.ini"; // Config.ini befindet sich im Root Verzeichnis public static String standartConfig = "conf.ini"; // Config.ini befindet sich im Root Verzeichnis
public static String standartLangDe = "langde.ini"; // langde.ini befindet sich im Root Verzeichnis
/** /**
* Liest einen Int aus der Config aus * Liest einen Int aus der Config aus
@ -103,12 +102,4 @@ public class ConfigHelper {
public static String getStandartConfig() { public static String getStandartConfig() {
return standartConfig; return standartConfig;
} }
/**
* Gibt den namen des standard langde file zurück
* @return Name des standard langde files
*/
public static String getStandartLangde() {
return standartLangDe;
}
} }