Author: markt Date: Thu Mar 24 15:17:23 2011 New Revision: 1084992 URL: http://svn.apache.org/viewvc?rev=1084992&view=rev Log: Comment out progress indication for normal usage
Modified: commons/proper/pool/trunk/src/test/org/apache/commons/pool2/impl/TestGenericObjectPool.java Modified: commons/proper/pool/trunk/src/test/org/apache/commons/pool2/impl/TestGenericObjectPool.java URL: http://svn.apache.org/viewvc/commons/proper/pool/trunk/src/test/org/apache/commons/pool2/impl/TestGenericObjectPool.java?rev=1084992&r1=1084991&r2=1084992&view=diff ============================================================================== --- commons/proper/pool/trunk/src/test/org/apache/commons/pool2/impl/TestGenericObjectPool.java (original) +++ commons/proper/pool/trunk/src/test/org/apache/commons/pool2/impl/TestGenericObjectPool.java Thu Mar 24 15:17:23 2011 @@ -1299,9 +1299,11 @@ public class TestGenericObjectPool exten pool.returnObject(one.obj); + /* Uncomment this for a progress indication if (i % 10 == 0) { System.out.println(i/10); - } + } + */ } }