Merge pull request #208 from jrtc27/patch-1
Fixed FMLRelaunchLog's Newline Handling
This commit is contained in:
commit
b6835334b2
1 changed files with 1 additions and 1 deletions
|
@ -113,7 +113,7 @@ public class FMLRelaunchLog
|
|||
// Are we longer than just the line separator?
|
||||
int lastIdx = -1;
|
||||
int idx = currentMessage.indexOf("\n",lastIdx+1);
|
||||
while (idx > 0)
|
||||
while (idx >= 0)
|
||||
{
|
||||
log.log(Level.INFO, currentMessage.substring(lastIdx+1,idx));
|
||||
lastIdx = idx;
|
||||
|
|
Loading…
Reference in a new issue