Skip to content

Commit

Permalink
Small cleanup.
Browse files Browse the repository at this point in the history
  • Loading branch information
LlamaLad7 committed Jan 13, 2024
1 parent 8c3f52d commit 2d60dae
Showing 1 changed file with 6 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,14 @@ public void postApply(ITargetClassContext context) {
return;
}
for (List<Runnable[]> queuedInjections : relevant.values()) {
if (queuedInjections != null) {
for (Runnable[] injection : queuedInjections) {
injection[0].run();
}
for (Runnable[] injection : queuedInjections) {
injection[1].run();
}
QUEUED_INJECTIONS.remove(context);
for (Runnable[] injection : queuedInjections) {
injection[0].run();
}
for (Runnable[] injection : queuedInjections) {
injection[1].run();
}
}
QUEUED_INJECTIONS.remove(context);
}

@Override
Expand Down

0 comments on commit 2d60dae

Please sign in to comment.