Skip to content

Commit 26dac03

Browse files
committed
CollectionHelper.cs: Remove unused SetEquals() for non-generic sets.
1 parent bd4c001 commit 26dac03

File tree

1 file changed

+1
-27
lines changed

1 file changed

+1
-27
lines changed

src/NHibernate/Util/CollectionHelper.cs

+1-27
Original file line numberDiff line numberDiff line change
@@ -304,33 +304,7 @@ public static bool DictionaryEquals<K, V>(IDictionary<K, V> a, IDictionary<K, V>
304304

305305
return true;
306306
}
307-
public static bool SetEquals(ISet a, ISet b)
308-
{
309-
if (Equals(a, b))
310-
{
311-
return true;
312-
}
313-
314-
if (a == null || b == null)
315-
{
316-
return false;
317-
}
318-
319-
if (a.Count != b.Count)
320-
{
321-
return false;
322-
}
323-
324-
foreach (object obj in a)
325-
{
326-
if (!b.Contains(obj))
327-
{
328-
return false;
329-
}
330-
}
331-
332-
return true;
333-
}
307+
334308

335309
/// <summary>
336310
/// Computes a hash code for <paramref name="coll"/>.

0 commit comments

Comments
 (0)