Repository: lucenenet Updated Branches: refs/heads/api-work f2e63d354 -> 460653e4e
Lucene.Net.Tests.Analysis.Stempel: fix compile issue because of rename of GetDefaultStopSet() > DefaultStopSet Project: http://git-wip-us.apache.org/repos/asf/lucenenet/repo Commit: http://git-wip-us.apache.org/repos/asf/lucenenet/commit/6a16e809 Tree: http://git-wip-us.apache.org/repos/asf/lucenenet/tree/6a16e809 Diff: http://git-wip-us.apache.org/repos/asf/lucenenet/diff/6a16e809 Branch: refs/heads/api-work Commit: 6a16e8097ae97229632b94920bb0fe3c7e06741b Parents: f2e63d3 Author: Shad Storhaug <[email protected]> Authored: Wed Feb 1 17:36:55 2017 +0700 Committer: Shad Storhaug <[email protected]> Committed: Wed Feb 1 17:36:55 2017 +0700 ---------------------------------------------------------------------- src/Lucene.Net.Tests.Analysis.Stempel/Pl/TestPolishAnalyzer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucenenet/blob/6a16e809/src/Lucene.Net.Tests.Analysis.Stempel/Pl/TestPolishAnalyzer.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Tests.Analysis.Stempel/Pl/TestPolishAnalyzer.cs b/src/Lucene.Net.Tests.Analysis.Stempel/Pl/TestPolishAnalyzer.cs index 0bd90bf..e2e5dea 100644 --- a/src/Lucene.Net.Tests.Analysis.Stempel/Pl/TestPolishAnalyzer.cs +++ b/src/Lucene.Net.Tests.Analysis.Stempel/Pl/TestPolishAnalyzer.cs @@ -56,7 +56,7 @@ namespace Lucene.Net.Analysis.Pl { CharArraySet exclusionSet = new CharArraySet(TEST_VERSION_CURRENT, AsSet("studenta"), false); ; Analyzer a = new PolishAnalyzer(TEST_VERSION_CURRENT, - PolishAnalyzer.GetDefaultStopSet(), exclusionSet); + PolishAnalyzer.DefaultStopSet, exclusionSet); CheckOneTerm(a, "studenta", "studenta"); CheckOneTerm(a, "studenci", "student"); }
