NightOwl888 commented on code in PR #914:
URL: https://github.com/apache/lucenenet/pull/914#discussion_r1501766468


##########
src/Lucene.Net.Tests/Search/TestBooleanOr.cs:
##########
@@ -200,9 +200,9 @@ public virtual void TestBooleanScorerMax()
 
             FixedBitSet hits = new FixedBitSet(docCount);
             AtomicInt32 end = new AtomicInt32();
-            ICollector c = new CollectorAnonymousClass(this, scorer, hits, 
end);
+            ICollector c = new CollectorAnonymousClass(hits, end);
 
-            while (end < docCount)
+            while (end.Value < docCount)

Review Comment:
   Yeah, go ahead and keep this change.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@lucenenet.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to