We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 494b6d3 commit 2d426e9Copy full SHA for 2d426e9
FoundationDB.Client/Layers/Tuples/FdbTupleComparisons.cs
@@ -78,7 +78,7 @@ public int GetHashCode(IFdbTuple obj)
78
if (t != null) return t.Equals(y, m_comparer);
79
80
t = y as IFdbTuple;
81
- if (t != null) t.Equals(x, m_comparer);
+ if (t != null) return t.Equals(x, m_comparer);
82
83
return false;
84
}
0 commit comments