mirror of https://github.com/apache/lucene.git
remove errant lurking semicolon
This commit is contained in:
parent
f2287e7ba6
commit
14196cfcf7
|
@ -38,7 +38,7 @@ import org.apache.lucene.util.UnicodeUtil;
|
||||||
/** A {@link DataOutput} storing data in a list of {@link ByteBuffer}s. */
|
/** A {@link DataOutput} storing data in a list of {@link ByteBuffer}s. */
|
||||||
public final class ByteBuffersDataOutput extends DataOutput implements Accountable {
|
public final class ByteBuffersDataOutput extends DataOutput implements Accountable {
|
||||||
private static final ByteBuffer EMPTY = ByteBuffer.allocate(0).order(ByteOrder.LITTLE_ENDIAN);
|
private static final ByteBuffer EMPTY = ByteBuffer.allocate(0).order(ByteOrder.LITTLE_ENDIAN);
|
||||||
;
|
|
||||||
private static final byte[] EMPTY_BYTE_ARRAY = {};
|
private static final byte[] EMPTY_BYTE_ARRAY = {};
|
||||||
|
|
||||||
public static final IntFunction<ByteBuffer> ALLOCATE_BB_ON_HEAP = ByteBuffer::allocate;
|
public static final IntFunction<ByteBuffer> ALLOCATE_BB_ON_HEAP = ByteBuffer::allocate;
|
||||||
|
|
Loading…
Reference in New Issue