mirror of
https://github.com/C9Glax/tranga.git
synced 2025-02-23 07:40:13 +01:00
Remove unncessary nullable in Job
This commit is contained in:
parent
d322445550
commit
84388a469a
@ -39,7 +39,7 @@ public abstract class Job
|
|||||||
public IEnumerable<Job> Run()
|
public IEnumerable<Job> Run()
|
||||||
{
|
{
|
||||||
this.state = JobState.Running;
|
this.state = JobState.Running;
|
||||||
IEnumerable<Job>? newJobs = RunInternal();
|
IEnumerable<Job> newJobs = RunInternal();
|
||||||
this.state = JobState.Completed;
|
this.state = JobState.Completed;
|
||||||
return newJobs;
|
return newJobs;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user