Skip to content

Commit 2d426e9

Browse files
committed
Fixed missing return statement in FdbTupleComparisons for cases where left is not a tuple but right is a tuple
1 parent 494b6d3 commit 2d426e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

FoundationDB.Client/Layers/Tuples/FdbTupleComparisons.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public int GetHashCode(IFdbTuple obj)
7878
if (t != null) return t.Equals(y, m_comparer);
7979

8080
t = y as IFdbTuple;
81-
if (t != null) t.Equals(x, m_comparer);
81+
if (t != null) return t.Equals(x, m_comparer);
8282

8383
return false;
8484
}

0 commit comments

Comments
 (0)