Merge pull request #599 from diesieben07/master
Handle empty lines in language files gracefully
This commit is contained in:
commit
316ec27e77
1 changed files with 1 additions and 1 deletions
|
@ -736,7 +736,7 @@ public class FMLCommonHandler
|
|||
boolean isEnhanced = false;
|
||||
for (String line : IOUtils.readLines(new ByteArrayInputStream(data), Charsets.UTF_8))
|
||||
{
|
||||
if (line.charAt(0) == '#')
|
||||
if (!line.isEmpty() && line.charAt(0) == '#')
|
||||
{
|
||||
line = line.substring(1).trim();
|
||||
if (line.equals("PARSE_ESCAPES"))
|
||||
|
|
Loading…
Reference in a new issue