Update Locale.java

Should fix most "invalid line" warns, caused by empty lines filled with just a space.
This commit is contained in:
Vrontis 2019-05-15 13:33:53 +00:00
parent db951a879f
commit 11cbc48a86

View File

@ -358,7 +358,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()) {