fix jdoc
This commit is contained in:
parent
f1f695b4d9
commit
bbb9c3883f
|
@ -24,11 +24,11 @@ import org.elasticsearch.common.lease.Releasable;
|
|||
/**
|
||||
* A wrapper around a resource that can be released. Note, release should not be
|
||||
* called directly on the resource itself.
|
||||
* <p/>
|
||||
* <p>Yea, I now, the fact that the resouce itself is releasable basically means that
|
||||
*
|
||||
* <p>Yea, I now, the fact that the resource itself is releasable basically means that
|
||||
* users of this class should take care... .
|
||||
*
|
||||
* @author kimchy (Shay Banon)
|
||||
* @author kimchy (shay.banon)
|
||||
*/
|
||||
public class BlockingAcquirableResource<T extends Releasable> implements AcquirableResource<T> {
|
||||
|
||||
|
|
|
@ -27,11 +27,11 @@ import java.util.concurrent.atomic.AtomicStampedReference;
|
|||
/**
|
||||
* A wrapper around a resource that can be released. Note, release should not be
|
||||
* called directly on the resource itself.
|
||||
* <p/>
|
||||
* <p>Yea, I now, the fact that the resouce itself is releasable basically means that
|
||||
*
|
||||
* <p>Yea, I now, the fact that the resource itself is releasable basically means that
|
||||
* users of this class should take care... .
|
||||
*
|
||||
* @author kimchy (Shay Banon)
|
||||
* @author kimchy (shay.banon)
|
||||
*/
|
||||
public class NonBlockingAcquirableResource<T extends Releasable> implements AcquirableResource<T> {
|
||||
|
||||
|
|
Loading…
Reference in New Issue