Repository: lucenenet Updated Branches: refs/heads/master 5f1b2e0cf -> c99735650
API: Lucene.Net.Analysis.Common.Analysis.Util.AbstractAnalysisFactory: Changed return type of GetSet from ICollection to ISet. Project: http://git-wip-us.apache.org/repos/asf/lucenenet/repo Commit: http://git-wip-us.apache.org/repos/asf/lucenenet/commit/368424f6 Tree: http://git-wip-us.apache.org/repos/asf/lucenenet/tree/368424f6 Diff: http://git-wip-us.apache.org/repos/asf/lucenenet/diff/368424f6 Branch: refs/heads/master Commit: 368424f6678469109482f7eaf498329edaa061e9 Parents: 5f1b2e0 Author: Shad Storhaug <[email protected]> Authored: Wed Jun 28 02:32:46 2017 +0700 Committer: Shad Storhaug <[email protected]> Committed: Wed Jun 28 02:32:46 2017 +0700 ---------------------------------------------------------------------- .../Analysis/Util/AbstractAnalysisFactory.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucenenet/blob/368424f6/src/Lucene.Net.Analysis.Common/Analysis/Util/AbstractAnalysisFactory.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Analysis.Common/Analysis/Util/AbstractAnalysisFactory.cs b/src/Lucene.Net.Analysis.Common/Analysis/Util/AbstractAnalysisFactory.cs index e4b5133..ec93dc4 100644 --- a/src/Lucene.Net.Analysis.Common/Analysis/Util/AbstractAnalysisFactory.cs +++ b/src/Lucene.Net.Analysis.Common/Analysis/Util/AbstractAnalysisFactory.cs @@ -280,7 +280,7 @@ namespace Lucene.Net.Analysis.Util /// <summary> /// Returns whitespace- and/or comma-separated set of values, or null if none are found </summary> - public virtual ICollection<string> GetSet(IDictionary<string, string> args, string name) + public virtual ISet<string> GetSet(IDictionary<string, string> args, string name) { string s; if (args.TryGetValue(name, out s))
