fix dup javadocs

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1490319 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael McCandless 2013-06-06 15:14:36 +00:00
parent b3c53779e6
commit d36076c1cd
1 changed files with 5 additions and 19 deletions

View File

@ -17,6 +17,11 @@ package org.apache.lucene.util.fst;
* limitations under the License.
*/
import java.io.IOException;
import org.apache.lucene.store.DataInput;
import org.apache.lucene.store.DataOutput;
/**
* An FST {@link Outputs} implementation where each output
* is one or two non-negative long values. If it's a
@ -41,25 +46,6 @@ package org.apache.lucene.util.fst;
* @lucene.experimental
*/
import java.io.IOException;
import org.apache.lucene.store.DataInput;
import org.apache.lucene.store.DataOutput;
/**
* An FST {@link Outputs} implementation where each output
* is one or two non-negative long values. If it's a
* single output, Long is returned; else, TwoLongs. Order
* is preserved in the TwoLongs case, ie .first is the first
* input/output added to Builder, and .second is the
* second. You cannot store 0 output with this (that's
* reserved to mean "no output")!
*
* NOTE: the resulting FST is not guaranteed to be minimal!
* See {@link Builder}.
*
* @lucene.experimental
*/
public final class UpToTwoPositiveIntOutputs extends Outputs<Object> {
/** Holds two long outputs. */