remove errant lurking semicolon

This commit is contained in:
Mike McCandless 2023-11-13 08:26:50 -05:00
parent f2287e7ba6
commit 14196cfcf7
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ import org.apache.lucene.util.UnicodeUtil;
/** A {@link DataOutput} storing data in a list of {@link ByteBuffer}s. */
public final class ByteBuffersDataOutput extends DataOutput implements Accountable {
private static final ByteBuffer EMPTY = ByteBuffer.allocate(0).order(ByteOrder.LITTLE_ENDIAN);
;
private static final byte[] EMPTY_BYTE_ARRAY = {};
public static final IntFunction<ByteBuffer> ALLOCATE_BB_ON_HEAP = ByteBuffer::allocate;