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/01/25 03:44:22 UTC

[38/50] [abbrv] lucenenet git commit: Lucene.Net.Tests.Join.TestJoinUtil.CollectorAnonymousInnerClassHelper6: removed unused context variable and constructor parameter

Lucene.Net.Tests.Join.TestJoinUtil.CollectorAnonymousInnerClassHelper6: removed unused context variable and constructor parameter


Project: http://git-wip-us.apache.org/repos/asf/lucenenet/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucenenet/commit/9aa8d66b
Tree: http://git-wip-us.apache.org/repos/asf/lucenenet/tree/9aa8d66b
Diff: http://git-wip-us.apache.org/repos/asf/lucenenet/diff/9aa8d66b

Branch: refs/heads/api-work
Commit: 9aa8d66b1ea976075ceb378c77f5aa340689ac54
Parents: b022d30
Author: Shad Storhaug <sh...@shadstorhaug.com>
Authored: Wed Jan 25 06:33:45 2017 +0700
Committer: Shad Storhaug <sh...@shadstorhaug.com>
Committed: Wed Jan 25 09:34:48 2017 +0700

----------------------------------------------------------------------
 src/Lucene.Net.Tests.Join/TestJoinUtil.cs | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucenenet/blob/9aa8d66b/src/Lucene.Net.Tests.Join/TestJoinUtil.cs
----------------------------------------------------------------------
diff --git a/src/Lucene.Net.Tests.Join/TestJoinUtil.cs b/src/Lucene.Net.Tests.Join/TestJoinUtil.cs
index cfa02c5..5abdec0 100644
--- a/src/Lucene.Net.Tests.Join/TestJoinUtil.cs
+++ b/src/Lucene.Net.Tests.Join/TestJoinUtil.cs
@@ -748,7 +748,7 @@ namespace Lucene.Net.Tests.Join
                 else
                 {
                     toSearcher.Search(new MatchAllDocsQuery(),
-                        new CollectorAnonymousInnerClassHelper6(this, context, toField, joinValueToJoinScores,
+                        new CollectorAnonymousInnerClassHelper6(this, toField, joinValueToJoinScores,
                             docToJoinScore));
                 }
                 queryVals[uniqueRandomValue] = docToJoinScore;
@@ -939,7 +939,6 @@ namespace Lucene.Net.Tests.Join
         {
             private readonly TestJoinUtil OuterInstance;
 
-            private IndexIterationContext Context;
             private string ToField;
             private IDictionary<BytesRef, JoinScore> JoinValueToJoinScores;
             private IDictionary<int, JoinScore> DocToJoinScore;
@@ -949,7 +948,7 @@ namespace Lucene.Net.Tests.Join
             private readonly BytesRef spare = new BytesRef();
 
             public CollectorAnonymousInnerClassHelper6(TestJoinUtil testJoinUtil, 
-                IndexIterationContext context, string toField, 
+                string toField, 
                 IDictionary<BytesRef, JoinScore> joinValueToJoinScores, 
                 IDictionary<int, JoinScore> docToJoinScore)
             {