Skip to content

Commit 1d01cb8

Browse files
committed
Merge pull request nhibernate#472 from dotjoe/IsSubsetOf
fix PersistentGenericSet.IsSubsetOf wrapper method
2 parents 378be39 + 18a476b commit 1d01cb8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/NHibernate/Collection/Generic/PersistentGenericSet.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ public void SymmetricExceptWith(IEnumerable<T> other)
390390
public bool IsSubsetOf(IEnumerable<T> other)
391391
{
392392
Read();
393-
return WrappedSet.IsProperSupersetOf(other);
393+
return WrappedSet.IsSubsetOf(other);
394394
}
395395

396396
public bool IsSupersetOf(IEnumerable<T> other)

0 commit comments

Comments
 (0)