Skip to content

Commit

Permalink
Fix 8.12 producing empty outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
modmuss50 committed Nov 12, 2024
1 parent 562ef8b commit 4567b8c
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,11 @@ public AbstractRemapJarTask() {
usesService(jarManifestServiceProvider);
}

@Override
protected void copy() {
// Skip the default copy behaviour of AbstractCopyTask.
}

public final <P extends AbstractRemapParams> void submitWork(Class<? extends AbstractRemapAction<P>> workAction, Action<P> action) {
final WorkQueue workQueue = getWorkerExecutor().noIsolation();

Expand Down

0 comments on commit 4567b8c

Please sign in to comment.