You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ps...@apache.org on 2007/12/12 03:43:21 UTC

svn commit: r603441 - /commons/proper/pool/branches/1_4_RELEASE_BRANCH/src/java/org/apache/commons/pool/BaseKeyedObjectPool.java

Author: psteitz
Date: Tue Dec 11 18:43:21 2007
New Revision: 603441

URL: http://svn.apache.org/viewvc?rev=603441&view=rev
Log:
Javadoc. Changed @since version.

Modified:
    commons/proper/pool/branches/1_4_RELEASE_BRANCH/src/java/org/apache/commons/pool/BaseKeyedObjectPool.java

Modified: commons/proper/pool/branches/1_4_RELEASE_BRANCH/src/java/org/apache/commons/pool/BaseKeyedObjectPool.java
URL: http://svn.apache.org/viewvc/commons/proper/pool/branches/1_4_RELEASE_BRANCH/src/java/org/apache/commons/pool/BaseKeyedObjectPool.java?rev=603441&r1=603440&r2=603441&view=diff
==============================================================================
--- commons/proper/pool/branches/1_4_RELEASE_BRANCH/src/java/org/apache/commons/pool/BaseKeyedObjectPool.java (original)
+++ commons/proper/pool/branches/1_4_RELEASE_BRANCH/src/java/org/apache/commons/pool/BaseKeyedObjectPool.java Tue Dec 11 18:43:21 2007
@@ -107,7 +107,7 @@
     /**
      * Has this pool instance been closed.
      * @return <code>true</code> when this pool has been closed.
-     * @since Pool 2.0
+     * @since Pool 1.4
      */
     protected final boolean isClosed() {
         return closed;
@@ -117,7 +117,7 @@
      * Throws an <code>IllegalStateException</code> when this pool has been closed.
      * @throws IllegalStateException when this pool has been closed.
      * @see #isClosed()
-     * @since Pool 2.0
+     * @since Pool 1.4
      */
     protected final void assertOpen() throws IllegalStateException {
         if(isClosed()) {