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 5736c97b8f5ae819a90691b7f201c50cc4f34f0d Author: Shad Storhaug <[email protected]> AuthorDate: Tue Oct 19 05:03:09 2021 +0700 BREAKING: Lucene.Net.Analysis.Stempel.Egothor.Stemmer.MultiTrie: Changed protected m_tries field from List<Trie> to IList<Trie> --- src/Lucene.Net.Analysis.Stempel/Egothor.Stemmer/MultiTrie.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Lucene.Net.Analysis.Stempel/Egothor.Stemmer/MultiTrie.cs b/src/Lucene.Net.Analysis.Stempel/Egothor.Stemmer/MultiTrie.cs index 80e152e..ab4bef6 100644 --- a/src/Lucene.Net.Analysis.Stempel/Egothor.Stemmer/MultiTrie.cs +++ b/src/Lucene.Net.Analysis.Stempel/Egothor.Stemmer/MultiTrie.cs @@ -70,7 +70,7 @@ namespace Egothor.Stemmer internal static char EOM = '*'; internal static string EOM_NODE = "" + EOM; - protected List<Trie> m_tries = new List<Trie>(); + protected IList<Trie> m_tries = new List<Trie>(); private readonly int BY = 1; // LUCENENET: marked readonly
