mirror of https://github.com/apache/lucene.git
LUCENE-4155: Javadocs fix (very strange this @see tag...)
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1352967 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1be9fcd984
commit
78f215f96e
|
@ -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() {
|
||||
|
|
Loading…
Reference in New Issue