Merge pull request #599 from diesieben07/master

Handle empty lines in language files gracefully
This commit is contained in:
LexManos 2015-02-13 14:04:53 -08:00
commit 316ec27e77

View file

@ -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"))