2
0

throw error instead of returning made up value

This commit is contained in:
glax 2023-05-17 23:51:09 +02:00
parent 5db12093c4
commit 45713b868d

View File

@ -31,7 +31,7 @@ public class TaskManager
public bool PublicationAlreadyAdded(Publication publication) public bool PublicationAlreadyAdded(Publication publication)
{ {
return false; throw new NotImplementedException();
//TODO fuzzy check publications //TODO fuzzy check publications
} }