From 8c18fd87a1dc2531eb5ab8e0362554d673c48ca7 Mon Sep 17 00:00:00 2001 From: Grant Ingersoll Date: Mon, 10 Dec 2007 21:21:40 +0000 Subject: [PATCH] remove commented out code git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@603057 13f79535-47bb-0310-9956-ffa450edef68 --- .../search/payloads/BoostingTermQuery.java | 26 ------------------- 1 file changed, 26 deletions(-) diff --git a/src/java/org/apache/lucene/search/payloads/BoostingTermQuery.java b/src/java/org/apache/lucene/search/payloads/BoostingTermQuery.java index e9be2906782..aef24604316 100644 --- a/src/java/org/apache/lucene/search/payloads/BoostingTermQuery.java +++ b/src/java/org/apache/lucene/search/payloads/BoostingTermQuery.java @@ -81,32 +81,6 @@ public class BoostingTermQuery extends SpanTermQuery{ } - /** - * Go to the next document - * - */ - /*public boolean next() throws IOException { - - boolean result = super.next(); - //set the payload. super.next() properly increments the term positions - if (result) { - //Load the payloads for all - processPayload(); - } - - return result; - } - - public boolean skipTo(int target) throws IOException { - boolean result = super.skipTo(target); - - if (result) { - processPayload(); - } - - return result; - }*/ - protected boolean setFreqCurrentDoc() throws IOException { if (!more) { return false;