Lucene.Net.QueryParser.Flexible.Core.Processors.QueryNodeProcessorPipeline.GetRange() refactor: changed return type from List<T> to IList<T>
Project: http://git-wip-us.apache.org/repos/asf/lucenenet/repo Commit: http://git-wip-us.apache.org/repos/asf/lucenenet/commit/9f9c1a22 Tree: http://git-wip-us.apache.org/repos/asf/lucenenet/tree/9f9c1a22 Diff: http://git-wip-us.apache.org/repos/asf/lucenenet/diff/9f9c1a22 Branch: refs/heads/api-work Commit: 9f9c1a22bc60be95f0d0b44fc871994c26de7662 Parents: b1efc52 Author: Shad Storhaug <[email protected]> Authored: Wed Feb 1 09:56:16 2017 +0700 Committer: Shad Storhaug <[email protected]> Committed: Wed Feb 1 09:56:16 2017 +0700 ---------------------------------------------------------------------- .../Flexible/Core/Processors/QueryNodeProcessorPipeline.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucenenet/blob/9f9c1a22/src/Lucene.Net.QueryParser/Flexible/Core/Processors/QueryNodeProcessorPipeline.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.QueryParser/Flexible/Core/Processors/QueryNodeProcessorPipeline.cs b/src/Lucene.Net.QueryParser/Flexible/Core/Processors/QueryNodeProcessorPipeline.cs index d894c4f..39476c0 100644 --- a/src/Lucene.Net.QueryParser/Flexible/Core/Processors/QueryNodeProcessorPipeline.cs +++ b/src/Lucene.Net.QueryParser/Flexible/Core/Processors/QueryNodeProcessorPipeline.cs @@ -224,7 +224,7 @@ namespace Lucene.Net.QueryParsers.Flexible.Core.Processors } } - public virtual List<IQueryNodeProcessor> GetRange(int index, int count) + public virtual IList<IQueryNodeProcessor> GetRange(int index, int count) { return this.processors.GetRange(index, count); }
