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 796aa12e0b94930f79fc28b6d67f522be2bc50d7 Author: Shad Storhaug <[email protected]> AuthorDate: Tue Oct 19 05:26:11 2021 +0700 BREAKING: Lucene.Net.Search.BooleanQuery: Changed protected m_weights field from List<Weight> to IList<Weight> --- src/Lucene.Net/Search/BooleanQuery.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Lucene.Net/Search/BooleanQuery.cs b/src/Lucene.Net/Search/BooleanQuery.cs index 29cc92a..93a62db 100644 --- a/src/Lucene.Net/Search/BooleanQuery.cs +++ b/src/Lucene.Net/Search/BooleanQuery.cs @@ -238,7 +238,7 @@ namespace Lucene.Net.Search /// The <see cref="Similarities.Similarity"/> implementation. </summary> protected Similarity m_similarity; - protected List<Weight> m_weights; + protected IList<Weight> m_weights; protected int m_maxCoord; // num optional + num required private readonly bool disableCoord;
