diff --git a/lucene/core/src/java/org/apache/lucene/util/RecyclingByteBlockAllocator.java b/lucene/core/src/java/org/apache/lucene/util/RecyclingByteBlockAllocator.java index bb37656e091..6fd2b7942f0 100644 --- a/lucene/core/src/java/org/apache/lucene/util/RecyclingByteBlockAllocator.java +++ b/lucene/core/src/java/org/apache/lucene/util/RecyclingByteBlockAllocator.java @@ -44,8 +44,6 @@ public final class RecyclingByteBlockAllocator extends ByteBlockPool.Allocator { * maximum number of buffered byte block * @param bytesUsed * {@link AtomicLong} reference counting internally allocated bytes - * - * @see DummyConcurrentLock */ public RecyclingByteBlockAllocator(int blockSize, int maxBufferedBlocks, AtomicLong bytesUsed) { @@ -56,8 +54,7 @@ public final class RecyclingByteBlockAllocator extends ByteBlockPool.Allocator { } /** - * Creates a new {@link RecyclingByteBlockAllocator} with a - * {@link DummyConcurrentLock} instance. + * Creates a new {@link RecyclingByteBlockAllocator}. * * @param blockSize * the block size in bytes @@ -71,8 +68,7 @@ public final class RecyclingByteBlockAllocator extends ByteBlockPool.Allocator { /** * Creates a new {@link RecyclingByteBlockAllocator} with a block size of * {@link ByteBlockPool#BYTE_BLOCK_SIZE}, upper buffered docs limit of - * {@link #DEFAULT_BUFFERED_BLOCKS} ({@value #DEFAULT_BUFFERED_BLOCKS}) and a - * {@link DummyConcurrentLock} instance. + * {@link #DEFAULT_BUFFERED_BLOCKS} ({@value #DEFAULT_BUFFERED_BLOCKS}). * */ public RecyclingByteBlockAllocator() {