Skip to content

Commit

Permalink
Finish Arrays tests, remove ToString overload with IFormatProvider, #…
Browse files Browse the repository at this point in the history
  • Loading branch information
paulirwin committed Jan 23, 2025
1 parent 72700fa commit 2e86ac1
Show file tree
Hide file tree
Showing 3 changed files with 352 additions and 50 deletions.
2 changes: 1 addition & 1 deletion src/Lucene.Net.Facet/FacetResult.cs
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ public string ToString(IFormatProvider? provider)
sb.Append("dim=");
sb.Append(Dim);
sb.Append(" path=");
sb.Append(Arrays.ToString(Path, provider));
sb.Append(Arrays.ToString(Path));
sb.Append(" value=");
if (TypeOfValue == typeof(int))
{
Expand Down
Loading

0 comments on commit 2e86ac1

Please sign in to comment.