Skip to content

Commit 374a442

Browse files
committed
fixed unittests
1 parent a0f06ef commit 374a442

1 file changed

Lines changed: 0 additions & 5 deletions

File tree

CSharpMath/Atom/Atoms/UnderAnnotation.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,4 @@ protected override MathAtom CloneInside(bool finalize) =>
2626
public bool EqualsUnderAnnotation(UnderAnnotation other) =>
2727
EqualsAtom(other) && InnerList.NullCheckingStructuralEquality(other.InnerList)
2828
&& 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();
3429
}

0 commit comments

Comments
 (0)