This commit is contained in:
kimchy 2010-06-27 12:05:30 +03:00
parent f1f695b4d9
commit bbb9c3883f
2 changed files with 6 additions and 6 deletions

View File

@ -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> {

View File

@ -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> {