From 45713b868deff099f4db214ed1d9bf3b0ac57626 Mon Sep 17 00:00:00 2001 From: glax <--local> Date: Wed, 17 May 2023 23:51:09 +0200 Subject: [PATCH] throw error instead of returning made up value --- TaskManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TaskManager.cs b/TaskManager.cs index 5ef3569..e482b46 100644 --- a/TaskManager.cs +++ b/TaskManager.cs @@ -31,7 +31,7 @@ public class TaskManager public bool PublicationAlreadyAdded(Publication publication) { - return false; + throw new NotImplementedException(); //TODO fuzzy check publications }