mirror of https://github.com/apache/lucene.git
remove useless placeholder comments
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150591 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
cc7490d251
commit
2950ecc4f7
|
@ -134,13 +134,6 @@ public class MultipleTermPositions
|
||||||
_posList = new IntQueue();
|
_posList = new IntQueue();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Describe <code>next</code> method here.
|
|
||||||
*
|
|
||||||
* @return a <code>boolean</code> value
|
|
||||||
* @exception IOException if an error occurs
|
|
||||||
* @see TermDocs#next()
|
|
||||||
*/
|
|
||||||
public final boolean next()
|
public final boolean next()
|
||||||
throws IOException
|
throws IOException
|
||||||
{
|
{
|
||||||
|
@ -174,25 +167,11 @@ public class MultipleTermPositions
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Describe <code>nextPosition</code> method here.
|
|
||||||
*
|
|
||||||
* @return an <code>int</code> value
|
|
||||||
* @see TermPositions#nextPosition()
|
|
||||||
*/
|
|
||||||
public final int nextPosition()
|
public final int nextPosition()
|
||||||
{
|
{
|
||||||
return _posList.next();
|
return _posList.next();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Describe <code>skipTo</code> method here.
|
|
||||||
*
|
|
||||||
* @param target an <code>int</code> value
|
|
||||||
* @return a <code>boolean</code> value
|
|
||||||
* @exception IOException if an error occurs
|
|
||||||
* @see TermDocs#skipTo(int)
|
|
||||||
*/
|
|
||||||
public final boolean skipTo(int target)
|
public final boolean skipTo(int target)
|
||||||
throws IOException
|
throws IOException
|
||||||
{
|
{
|
||||||
|
@ -209,34 +188,16 @@ public class MultipleTermPositions
|
||||||
return next();
|
return next();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Describe <code>doc</code> method here.
|
|
||||||
*
|
|
||||||
* @return an <code>int</code> value
|
|
||||||
* @see TermDocs#doc()
|
|
||||||
*/
|
|
||||||
public final int doc()
|
public final int doc()
|
||||||
{
|
{
|
||||||
return _doc;
|
return _doc;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Describe <code>freq</code> method here.
|
|
||||||
*
|
|
||||||
* @return an <code>int</code> value
|
|
||||||
* @see TermDocs#freq()
|
|
||||||
*/
|
|
||||||
public final int freq()
|
public final int freq()
|
||||||
{
|
{
|
||||||
return _freq;
|
return _freq;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Describe <code>close</code> method here.
|
|
||||||
*
|
|
||||||
* @exception IOException if an error occurs
|
|
||||||
* @see TermDocs#close()
|
|
||||||
*/
|
|
||||||
public final void close()
|
public final void close()
|
||||||
throws IOException
|
throws IOException
|
||||||
{
|
{
|
||||||
|
@ -244,12 +205,8 @@ public class MultipleTermPositions
|
||||||
((TermPositions)_termPositionsQueue.pop()).close();
|
((TermPositions)_termPositionsQueue.pop()).close();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/** Not implemented.
|
||||||
* Describe <code>seek</code> method here.
|
* @throws UnsupportedOperationException
|
||||||
*
|
|
||||||
* @param arg0 a <code>Term</code> value
|
|
||||||
* @exception IOException if an error occurs
|
|
||||||
* @see TermDocs#seek(Term)
|
|
||||||
*/
|
*/
|
||||||
public void seek(Term arg0)
|
public void seek(Term arg0)
|
||||||
throws IOException
|
throws IOException
|
||||||
|
@ -257,19 +214,15 @@ public class MultipleTermPositions
|
||||||
throw new UnsupportedOperationException();
|
throw new UnsupportedOperationException();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** Not implemented.
|
||||||
|
* @throws UnsupportedOperationException
|
||||||
|
*/
|
||||||
public void seek(TermEnum termEnum) throws IOException {
|
public void seek(TermEnum termEnum) throws IOException {
|
||||||
throw new UnsupportedOperationException();
|
throw new UnsupportedOperationException();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** Not implemented.
|
||||||
/**
|
* @throws UnsupportedOperationException
|
||||||
* Describe <code>read</code> method here.
|
|
||||||
*
|
|
||||||
* @param arg0 an <code>int[]</code> value
|
|
||||||
* @param arg1 an <code>int[]</code> value
|
|
||||||
* @return an <code>int</code> value
|
|
||||||
* @exception IOException if an error occurs
|
|
||||||
* @see TermDocs#read(int[], int[])
|
|
||||||
*/
|
*/
|
||||||
public int read(int[] arg0, int[] arg1)
|
public int read(int[] arg0, int[] arg1)
|
||||||
throws IOException
|
throws IOException
|
||||||
|
|
Loading…
Reference in New Issue