Make SourceRemapper threaded (#446)

Should be a little bit faster, but nothing magicial.
This commit is contained in:
modmuss50
2021-07-25 22:54:22 +01:00
committed by GitHub
parent 4601cc1db2
commit ef2816b0d0
4 changed files with 211 additions and 114 deletions

View File

@@ -108,7 +108,6 @@ public class RemapConfiguration {
rootProject.getTasks().register(remapAllSourcesTaskName, RemapAllSourcesTask.class, task -> {
task.sourceRemapper = sourceRemapper;
task.doLast(t -> sourceRemapper.remapAll());
});
parentTask = rootProject.getTasks().getByName(remapAllSourcesTaskName);