We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0f06ef commit 374a442Copy full SHA for 374a442
1 file changed
CSharpMath/Atom/Atoms/UnderAnnotation.cs
@@ -26,9 +26,4 @@ protected override MathAtom CloneInside(bool finalize) =>
26
public bool EqualsUnderAnnotation(UnderAnnotation other) =>
27
EqualsAtom(other) && InnerList.NullCheckingStructuralEquality(other.InnerList)
28
&& UnderList.NullCheckingStructuralEquality(other.UnderList);
29
- public override bool Equals(object obj) =>
30
- obj is UnderAnnotation u ? EqualsUnderAnnotation(u) : false;
31
-
32
- public override int GetHashCode() => (base.GetHashCode(), InnerList, UnderList).GetHashCode();
33
- // public override int GetHashCode() => (base.GetHashCode(), InnerList).GetHashCode();
34
}
0 commit comments