Skip to content

Commit

Permalink
fix: 🚑️ Add missing parameter to ctor (#629)
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinWitt authored May 7, 2023
1 parent e2b448c commit cd69516
Showing 1 changed file with 9 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ public class PeriodicMiner {

static final FluentLogger logger = FluentLogger.forEnclosingClass();

MiningPrinter miningPrinter;
Vertx vertx;
SearchProjectService searchProjectService;
ProjectRepository projectRepository;
QodanaService qodanaService;
ProjectService projectService;
final MiningPrinter miningPrinter;
final Vertx vertx;
final SearchProjectService searchProjectService;
final ProjectRepository projectRepository;
final QodanaService qodanaService;
final ProjectService projectService;

MeterRegistry registry;

Expand All @@ -51,13 +51,15 @@ public PeriodicMiner(
SearchProjectService searchProjectService,
ProjectRepository projectRepository,
QodanaService qodanaService,
ProjectService projectService) {
ProjectService projectService,
MiningPrinter miningPrinter) {
this.registry = registry;
this.vertx = vertx;
this.searchProjectService = searchProjectService;
this.projectRepository = projectRepository;
this.qodanaService = qodanaService;
this.projectService = projectService;
this.miningPrinter = miningPrinter;
}

private Project getRandomProject() throws IOException {
Expand Down

0 comments on commit cd69516

Please sign in to comment.