Skip to content

Commit

Permalink
Minor
Browse files Browse the repository at this point in the history
  • Loading branch information
rampaa committed Oct 17, 2024
1 parent 50abb4c commit 3580c1f
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions JL.Core/Deconjugation/Form.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ public override bool Equals(object? obj)
&& Text == form.Text
&& OriginalText == form.OriginalText
&& Tags.SequenceEqual(form.Tags)
&& SeenText.SetEquals(form.SeenText)
&& Process.SequenceEqual(form.Process);
}

Expand All @@ -29,7 +28,6 @@ public bool Equals(Form? other)
&& Text == other.Text
&& OriginalText == other.OriginalText
&& Tags.SequenceEqual(other.Tags)
&& SeenText.SetEquals(other.SeenText)
&& Process.SequenceEqual(other.Process);
}

Expand All @@ -50,11 +48,6 @@ public override int GetHashCode()
hash = (hash * 37) + process.GetHashCode(StringComparison.Ordinal);
}

foreach (string seenText in SeenText)
{
hash = (hash * 37) + seenText.GetHashCode(StringComparison.Ordinal);
}

return hash;
}
}
Expand Down

0 comments on commit 3580c1f

Please sign in to comment.