diff --git a/src/java/org/apache/lucene/index/MultipleTermPositions.java b/src/java/org/apache/lucene/index/MultipleTermPositions.java index 1cf29b2e2b1..e31bca6d3d1 100644 --- a/src/java/org/apache/lucene/index/MultipleTermPositions.java +++ b/src/java/org/apache/lucene/index/MultipleTermPositions.java @@ -134,13 +134,6 @@ public class MultipleTermPositions _posList = new IntQueue(); } - /** - * Describe next method here. - * - * @return a boolean value - * @exception IOException if an error occurs - * @see TermDocs#next() - */ public final boolean next() throws IOException { @@ -174,25 +167,11 @@ public class MultipleTermPositions return true; } - /** - * Describe nextPosition method here. - * - * @return an int value - * @see TermPositions#nextPosition() - */ public final int nextPosition() { return _posList.next(); } - /** - * Describe skipTo method here. - * - * @param target an int value - * @return a boolean value - * @exception IOException if an error occurs - * @see TermDocs#skipTo(int) - */ public final boolean skipTo(int target) throws IOException { @@ -209,34 +188,16 @@ public class MultipleTermPositions return next(); } - /** - * Describe doc method here. - * - * @return an int value - * @see TermDocs#doc() - */ public final int doc() { return _doc; } - /** - * Describe freq method here. - * - * @return an int value - * @see TermDocs#freq() - */ public final int freq() { return _freq; } - /** - * Describe close method here. - * - * @exception IOException if an error occurs - * @see TermDocs#close() - */ public final void close() throws IOException { @@ -244,12 +205,8 @@ public class MultipleTermPositions ((TermPositions)_termPositionsQueue.pop()).close(); } - /** - * Describe seek method here. - * - * @param arg0 a Term value - * @exception IOException if an error occurs - * @see TermDocs#seek(Term) + /** Not implemented. + * @throws UnsupportedOperationException */ public void seek(Term arg0) throws IOException @@ -257,19 +214,15 @@ public class MultipleTermPositions throw new UnsupportedOperationException(); } + /** Not implemented. + * @throws UnsupportedOperationException + */ public void seek(TermEnum termEnum) throws IOException { throw new UnsupportedOperationException(); } - - /** - * Describe read method here. - * - * @param arg0 an int[] value - * @param arg1 an int[] value - * @return an int value - * @exception IOException if an error occurs - * @see TermDocs#read(int[], int[]) + /** Not implemented. + * @throws UnsupportedOperationException */ public int read(int[] arg0, int[] arg1) throws IOException