Skip to content

Commit 18a476b

Browse files
committed
fix PersistentGenericSet.IsSubsetOf wrapper method
1 parent 378be39 commit 18a476b

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)