This is an automated email from the ASF dual-hosted git repository. nightowl888 pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/lucenenet.git
commit fa6e2fc7b9b2dd3e95be9f468bfa44ea1a4669e6 Author: Ron Clabo <[email protected]> AuthorDate: Fri Apr 2 16:38:33 2021 -0400 Fixed casting bug in grouping search --- src/Lucene.Net.Grouping/GroupingSearch.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Lucene.Net.Grouping/GroupingSearch.cs b/src/Lucene.Net.Grouping/GroupingSearch.cs index 6a018b8..0f29d6a 100644 --- a/src/Lucene.Net.Grouping/GroupingSearch.cs +++ b/src/Lucene.Net.Grouping/GroupingSearch.cs @@ -274,7 +274,7 @@ namespace Lucene.Net.Search.Grouping if (allGroups) { - matchingGroups = (IList)allGroupsCollector.Groups; + matchingGroups = (ICollection)allGroupsCollector.Groups; } else {
