mirror of
https://github.com/songoda/EpicHeads.git
synced 2024-11-25 20:16:14 +01:00
Update Locale.java | Fix for pseudo-empty lines in translation.
This commit is contained in:
parent
4b96df146b
commit
ca2c88be07
@ -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()) {
|
||||
|
Loading…
Reference in New Issue
Block a user