diff --git a/API/Schema/Jobs/Job.cs b/API/Schema/Jobs/Job.cs index f4b9388..bbce2ab 100644 --- a/API/Schema/Jobs/Job.cs +++ b/API/Schema/Jobs/Job.cs @@ -39,7 +39,7 @@ public abstract class Job public IEnumerable Run() { this.state = JobState.Running; - IEnumerable? newJobs = RunInternal(); + IEnumerable newJobs = RunInternal(); this.state = JobState.Completed; return newJobs; }