mirror of
https://github.com/architectury/architectury-loom.git
synced 2026-03-28 04:07:01 -05:00
Only process lines that contain :: should fix an odd StringIndexOutOfBoundsException
This commit is contained in:
@@ -93,7 +93,7 @@ public class FernFlowerTask extends AbstractDecompileTask implements ForkingJava
|
||||
spec.setArgs(args);
|
||||
spec.setErrorOutput(System.err);
|
||||
spec.setStandardOutput(new ConsumingOutputStream(line -> {
|
||||
if (line.startsWith("Listening for transport")) {
|
||||
if (line.startsWith("Listening for transport") || !line.contains("::")) {
|
||||
System.out.println(line);
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user