You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2012/06/16 18:50:36 UTC

svn commit: r1350960 - /commons/proper/pool/trunk/src/main/java/org/apache/commons/pool2/impl/BaseGenericObjectPool.java

Author: sebb
Date: Sat Jun 16 16:50:36 2012
New Revision: 1350960

URL: http://svn.apache.org/viewvc?rev=1350960&view=rev
Log:
POOL-222 - bug in javadoc markup for BaseGenericObjectPool#getLifo()

Modified:
    commons/proper/pool/trunk/src/main/java/org/apache/commons/pool2/impl/BaseGenericObjectPool.java

Modified: commons/proper/pool/trunk/src/main/java/org/apache/commons/pool2/impl/BaseGenericObjectPool.java
URL: http://svn.apache.org/viewvc/commons/proper/pool/trunk/src/main/java/org/apache/commons/pool2/impl/BaseGenericObjectPool.java?rev=1350960&r1=1350959&r2=1350960&view=diff
==============================================================================
--- commons/proper/pool/trunk/src/main/java/org/apache/commons/pool2/impl/BaseGenericObjectPool.java (original)
+++ commons/proper/pool/trunk/src/main/java/org/apache/commons/pool2/impl/BaseGenericObjectPool.java Sat Jun 16 16:50:36 2012
@@ -281,7 +281,7 @@ public abstract class BaseGenericObjectP
      * from the pool, or as a FIFO (first in, first out) queue, where the pool
      * always returns the oldest object in the idle object pool.
      *
-     * @param lifo  <code>true</true> if the pool is to be configured with LIFO
+     * @param lifo  <code>true</code> if the pool is to be configured with LIFO
      *              behaviour or <code>false</code> if the pool is to be
      *              configured with FIFO behaviour
      *