You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucenenet.apache.org by ni...@apache.org on 2017/02/01 05:19:04 UTC

[05/15] lucenenet git commit: Lucene.Net.QueryParser.Flexible.Core.Processors.QueryNodeProcessorPipeline.GetRange() refactor: changed return type from List to IList

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 <sh...@shadstorhaug.com>
Authored: Wed Feb 1 09:56:16 2017 +0700
Committer: Shad Storhaug <sh...@shadstorhaug.com>
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);
         }