Skip to content

Commit 16e0aa7

Browse files
committed
NH-3638: Cleaned up equality syntax (again... silly me).
1 parent b957ad1 commit 16e0aa7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/NHibernate/Mapping/ByCode/PropertyPath.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public bool Equals(PropertyPath other)
6666
{
6767
return true;
6868
}
69-
return Equals(previousPath, other.previousPath) && Equals(localMember, other.localMember);
69+
return Equals(previousPath, other.previousPath) && localMember.Equals(other.localMember);
7070
}
7171

7272
public override int GetHashCode()

0 commit comments

Comments
 (0)