Clear Fernflower context after decompiling (#760)

This commit is contained in:
Juuz
2022-12-09 10:49:43 +02:00
committed by GitHub
parent 7173c2a6cb
commit ec76760ca4

View File

@@ -61,6 +61,11 @@ public final class FabricFernFlowerDecompiler implements LoomDecompiler {
}
ff.addSource(compiledJar.toFile());
ff.decompileContext();
try {
ff.decompileContext();
} finally {
ff.clearContext();
}
}
}