HBASE-13595 Fix Javadoc warn induced in Bytes.java.

This commit is contained in:
anoopsjohn 2015-04-30 20:58:25 +05:30
parent 3a9c2b0c55
commit d88a4180f7
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ MAVEN_OPTS="${MAVEN_OPTS:-"-Xmx3100M"}"
OK_RELEASEAUDIT_WARNINGS=0
# 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

View File

@ -1376,7 +1376,7 @@ public class Bytes implements Comparable<Bytes> {
* @param offset Offset into array at which vint begins.
* @throws java.io.IOException e
* @return deserialized long from buffer.
* @deprecated Use {@link #readAsVLong()} instead.
* @deprecated Use {@link #readAsVLong(byte[], int)} instead.
*/
@Deprecated
public static long readVLong(final byte [] buffer, final int offset)