src/java.xml.crypto/share/classes/com/sun/org/apache/xml/internal/security/utils/WeakObjectPool.java
changeset 59240 b3116877866f
parent 50614 3810c9a2efa1
equal deleted inserted replaced
59239:9fe5d0d4e9c5 59240:b3116877866f
    37  * Subclasses must implement the abstract {@link #createObject()}.
    37  * Subclasses must implement the abstract {@link #createObject()}.
    38  * <p>
    38  * <p>
    39  *
    39  *
    40  * Internally, the pool is stored in a java.util.concurrent.LinkedBlockingDeque
    40  * Internally, the pool is stored in a java.util.concurrent.LinkedBlockingDeque
    41  * instance.
    41  * instance.
       
    42  *
       
    43  * @deprecated This class is no longer in use in Santuario 2.1.4
    42  */
    44  */
       
    45 @Deprecated
    43 public abstract class WeakObjectPool<T, E extends Throwable> {
    46 public abstract class WeakObjectPool<T, E extends Throwable> {
    44 
    47 
    45     private static final Integer MARKER_VALUE = Integer.MAX_VALUE;//once here rather than auto-box it?
    48     private static final Integer MARKER_VALUE = Integer.MAX_VALUE;//once here rather than auto-box it?
    46 
    49 
    47     /** created, available objects to be checked out to clients */
    50     /** created, available objects to be checked out to clients */