Update Locale.java | Fix for pseudo-empty lines in translation.

This commit is contained in:
Vrontis 2019-07-11 19:40:30 +00:00 committed by Brianna
parent 4b96df146b
commit ca2c88be07
1 changed files with 1 additions and 1 deletions

View File

@ -355,7 +355,7 @@ public class Locale {
try (BufferedReader reader = new BufferedReader(new FileReader(file))) {
String line;
for (int lineNumber = 0; (line = reader.readLine()) != null; lineNumber++) {
if (line.isEmpty() || line.startsWith("#") /* Comment */) continue;
if (line.trim().isEmpty() || line.startsWith("#") /* Comment */) continue;
Matcher matcher = NODE_PATTERN.matcher(line);
if (!matcher.find()) {