mirror of
https://github.com/Oth3r/Sit.git
synced 2025-09-19 16:03:22 +02:00
LangReader error message
This commit is contained in:
parent
dd6567b671
commit
915c218796
1 changed files with 2 additions and 2 deletions
|
@ -86,11 +86,11 @@ public class LangReader {
|
||||||
if (inputStream == null) {
|
if (inputStream == null) {
|
||||||
// try loading the default language file
|
// try loading the default language file
|
||||||
inputStream = classLoader.getResourceAsStream("assets/sit/lang/"+ new ServerConfig().getLang() +".json");
|
inputStream = classLoader.getResourceAsStream("assets/sit/lang/"+ new ServerConfig().getLang() +".json");
|
||||||
//todo error message and reset back to EN_US
|
Data.LOGGER.error("COULDN'T LOAD THE LANGUAGE FILE. RESETTING TO en_us.");
|
||||||
}
|
}
|
||||||
|
|
||||||
// if the input stream is still null, throw an exception
|
// if the input stream is still null, throw an exception
|
||||||
if (inputStream == null) throw new IllegalArgumentException("UNABLE TO LOAD THE LANGUAGE FILE.");
|
if (inputStream == null) throw new IllegalArgumentException("UNABLE TO LOAD THE ENGLISH LANGUAGE FILE.");
|
||||||
|
|
||||||
Type type = new TypeToken<Map<String, String>>(){}.getType();
|
Type type = new TypeToken<Map<String, String>>(){}.getType();
|
||||||
Reader reader = new InputStreamReader(inputStream, StandardCharsets.UTF_8);
|
Reader reader = new InputStreamReader(inputStream, StandardCharsets.UTF_8);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue