fix incorrect srg-out destination

This commit is contained in:
Recursive G 2018-07-23 00:53:13 -05:00 committed by md-5
parent 2e3c6e046b
commit 5fe8dbf4d9

View File

@ -597,7 +597,7 @@ public class JarMapping {
}
}
try (PrintWriter out = (logfile != null ? new PrintWriter(System.out) : new PrintWriter(logfile))) {
try (PrintWriter out = (logfile == null ? new PrintWriter(System.out) : new PrintWriter(logfile))) {
srgWriter.write(out);
}
}