Fix compilation error, Protip: Don't use java7 things when compiling for java6, and Don't report successful build on compilation errors cpw.

This commit is contained in:
LexManos 2012-06-20 02:14:07 -07:00
parent ef7514288b
commit 308525987d

View file

@ -51,7 +51,7 @@ final class FMLLogFormatter extends Formatter
}
msg.append(record.getMessage());
msg.append(System.lineSeparator());
msg.append(System.getProperty("line.separator"));
Throwable thr = record.getThrown();
if (thr != null)