removed unnecessary cast

This commit is contained in:
2023-06-07 00:24:58 +02:00
parent 6a304bb330
commit 1f3ac41b30
2 changed files with 3 additions and 4 deletions

View File

@ -13,7 +13,7 @@ namespace Tranga;
public class TaskManager
{
public Dictionary<Publication, List<Chapter>> chapterCollection = new();
private HashSet<TrangaTask> _allTasks = new HashSet<TrangaTask>();
private HashSet<TrangaTask> _allTasks = new();
private bool _continueRunning = true;
private readonly Connector[] _connectors;
public TrangaSettings settings { get; }