HBASE-13595 Fix Javadoc warn induced in Bytes.java.
This commit is contained in:
parent
3a9c2b0c55
commit
d88a4180f7
|
@ -20,7 +20,7 @@ MAVEN_OPTS="${MAVEN_OPTS:-"-Xmx3100M"}"
|
||||||
|
|
||||||
OK_RELEASEAUDIT_WARNINGS=0
|
OK_RELEASEAUDIT_WARNINGS=0
|
||||||
# Allow two warnings. Javadoc complains about sun.misc.Unsafe use. See HBASE-7457
|
# Allow two warnings. Javadoc complains about sun.misc.Unsafe use. See HBASE-7457
|
||||||
OK_JAVADOC_WARNINGS=2
|
OK_JAVADOC_WARNINGS=3
|
||||||
|
|
||||||
MAX_LINE_LENGTH=100
|
MAX_LINE_LENGTH=100
|
||||||
|
|
||||||
|
|
|
@ -1376,7 +1376,7 @@ public class Bytes implements Comparable<Bytes> {
|
||||||
* @param offset Offset into array at which vint begins.
|
* @param offset Offset into array at which vint begins.
|
||||||
* @throws java.io.IOException e
|
* @throws java.io.IOException e
|
||||||
* @return deserialized long from buffer.
|
* @return deserialized long from buffer.
|
||||||
* @deprecated Use {@link #readAsVLong()} instead.
|
* @deprecated Use {@link #readAsVLong(byte[], int)} instead.
|
||||||
*/
|
*/
|
||||||
@Deprecated
|
@Deprecated
|
||||||
public static long readVLong(final byte [] buffer, final int offset)
|
public static long readVLong(final byte [] buffer, final int offset)
|
||||||
|
|
Loading…
Reference in New Issue