Skip to content

Commit

Permalink
BUG: Lucene.Net.Tests.Facet.Taxonomy.TestTaxonomyFacetSumValueSource.…
Browse files Browse the repository at this point in the history
…ValueSourceAnonymousInnerClassHelper: Completed implementation of GetHashCode() (apache#259)
  • Loading branch information
NightOwl888 committed Feb 4, 2021
1 parent 6560d88 commit 7280738
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Runtime.CompilerServices;
using Assert = Lucene.Net.TestFramework.Assert;
using Console = Lucene.Net.Util.SystemConsole;

Expand Down Expand Up @@ -423,7 +424,7 @@ public override bool Equals(object o)
}
public override int GetHashCode()
{
throw new NotImplementedException();
return RuntimeHelpers.GetHashCode(this);
}

public override string GetDescription()
Expand Down

0 comments on commit 7280738

Please sign in to comment.