From 53dd74bd870437ecee0483096e3ef5669d844e57 Mon Sep 17 00:00:00 2001 From: Mike McCandless Date: Fri, 23 Sep 2016 05:56:51 -0400 Subject: [PATCH] LUCENE-7407: fix stale javadocs --- .../core/src/java/org/apache/lucene/index/SortedDocValues.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lucene/core/src/java/org/apache/lucene/index/SortedDocValues.java b/lucene/core/src/java/org/apache/lucene/index/SortedDocValues.java index 0f43f6a4108..d97dbbf5885 100644 --- a/lucene/core/src/java/org/apache/lucene/index/SortedDocValues.java +++ b/lucene/core/src/java/org/apache/lucene/index/SortedDocValues.java @@ -39,8 +39,7 @@ public abstract class SortedDocValues extends BinaryDocValues { /** * Returns the ordinal for the current docID. * @return ordinal for the document: this is dense, starts at 0, then - * increments by 1 for the next value in sorted order. Note that - * missing values are indicated by -1. + * increments by 1 for the next value in sorted order. */ public abstract int ordValue();