diff --git a/ICD.Common.Utils/Collections/IcdHashSet.cs b/ICD.Common.Utils/Collections/IcdHashSet.cs index 5ce5fd7..9c68435 100644 --- a/ICD.Common.Utils/Collections/IcdHashSet.cs +++ b/ICD.Common.Utils/Collections/IcdHashSet.cs @@ -228,7 +228,7 @@ namespace ICD.Common.Utils.Collections public bool SetEquals(IcdHashSet set) { if (set == null) - return Count == 0; + throw new ArgumentNullException("set"); return Count == set.Count && set.All(Contains); }