You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ma...@apache.org on 2012/04/25 21:36:13 UTC

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

Author: markt
Date: Wed Apr 25 19:36:12 2012
New Revision: 1330509

URL: http://svn.apache.org/viewvc?rev=1330509&view=rev
Log:
Javadoc

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

Modified: commons/proper/pool/trunk/src/main/java/org/apache/commons/pool2/impl/DefaultEvictionPolicy.java
URL: http://svn.apache.org/viewvc/commons/proper/pool/trunk/src/main/java/org/apache/commons/pool2/impl/DefaultEvictionPolicy.java?rev=1330509&r1=1330508&r2=1330509&view=diff
==============================================================================
--- commons/proper/pool/trunk/src/main/java/org/apache/commons/pool2/impl/DefaultEvictionPolicy.java (original)
+++ commons/proper/pool/trunk/src/main/java/org/apache/commons/pool2/impl/DefaultEvictionPolicy.java Wed Apr 25 19:36:12 2012
@@ -17,7 +17,8 @@
 package org.apache.commons.pool2.impl;
 
 /**
- * Objects will be evicted if the following conditions are met:
+ * Provides the default implementation of {@link EvictionPolicy} used by the
+ * pools. Objects will be evicted if the following conditions are met:
  * <ul>
  * <li>the object has been idle longer than
  *     {@link GenericObjectPool#getMinEvictableIdleTimeMillis()} /