Update TaskImpl.java

This commit is contained in:
Tofaa 2024-07-08 17:28:05 +04:00 committed by GitHub
parent 505caf88fb
commit 69bc235042
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -16,7 +16,7 @@ class TaskImpl implements Task {
final ExecutionType type;
final Scheduler owner;
TaskImpl(int id, Supplier<TaskSchedule> task, ExecutionType type, Scheduler owner) {
TaskImpl(int id, Supplier<TaskSchedule> task, ExecutionType type, SchedulerImpl owner) {
this.id = id;
this.task = task;
this.type = type;