Skip to content

Commit

Permalink
Always inject FinishedJobs instance into ProgressServiceImpl #1887
Browse files Browse the repository at this point in the history
The "finishedJobs" variable isn´t injected, thus is always null, when used
from a progress dialog. Since the @optional field in combination with @Inject
only refers to already created instances of FinishedJobs. But, this does
not happen in this flow.

Fixes #1887
  • Loading branch information
selundqma committed May 15, 2024
1 parent deb75d4 commit 20c6aac
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ public class ProgressServiceImpl implements IProgressService {
ProgressManager progressManager;

@Inject
@Optional
FinishedJobs finishedJobs;

@Inject
Expand Down

0 comments on commit 20c6aac

Please sign in to comment.