From 84388a469aaa547708da3a3a88aa0f8de85d1a36 Mon Sep 17 00:00:00 2001 From: Glax Date: Mon, 16 Dec 2024 23:20:46 +0100 Subject: [PATCH] Remove unncessary nullable in Job --- API/Schema/Jobs/Job.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }