mirror of https://github.com/apache/lucene.git
LUCENE-8533: Fix Javadocs of DataInput#readVInt(): Negative numbers are supported, but should be avoided.
This commit is contained in:
parent
e6f6f352cf
commit
167c65afad
|
@ -208,6 +208,9 @@ Other:
|
||||||
* LUCENE-8523: Correct typo in JapaneseNumberFilterFactory javadocs (Ankush Jhalani
|
* LUCENE-8523: Correct typo in JapaneseNumberFilterFactory javadocs (Ankush Jhalani
|
||||||
via Alan Woodward)
|
via Alan Woodward)
|
||||||
|
|
||||||
|
* LUCENE-8533: Fix Javadocs of DataInput#readVInt(): Negative numbers are
|
||||||
|
supported, but should be avoided. (Vladimir Dolzhenko via Uwe Schindler)
|
||||||
|
|
||||||
======================= Lucene 7.5.1 =======================
|
======================= Lucene 7.5.1 =======================
|
||||||
|
|
||||||
Bug Fixes:
|
Bug Fixes:
|
||||||
|
|
|
@ -103,8 +103,8 @@ public abstract class DataInput implements Cloneable {
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Reads an int stored in variable-length format. Reads between one and
|
/** Reads an int stored in variable-length format. Reads between one and
|
||||||
* five bytes. Smaller values take fewer bytes. Negative numbers are not
|
* five bytes. Smaller values take fewer bytes. Negative numbers are
|
||||||
* supported.
|
* supported, but should be avoided.
|
||||||
* <p>
|
* <p>
|
||||||
* The format is described further in {@link DataOutput#writeVInt(int)}.
|
* The format is described further in {@link DataOutput#writeVInt(int)}.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue