Author: ggregory Date: Tue Jan 10 01:37:12 2012 New Revision: 1229443 URL: http://svn.apache.org/viewvc?rev=1229443&view=rev Log: Use SVN Id instead of other keywords. Set svn:keywords property to Id.
Modified: commons/proper/pool/branches/POOL_1_X/src/java/org/apache/commons/pool/impl/EvictionTimer.java commons/proper/pool/branches/POOL_1_X/src/test/org/apache/commons/pool/PrivateException.java commons/proper/pool/branches/POOL_1_X/src/test/org/apache/commons/pool/VisitTracker.java commons/proper/pool/branches/POOL_1_X/src/test/org/apache/commons/pool/VisitTrackerFactory.java commons/proper/pool/branches/POOL_1_X/src/test/org/apache/commons/pool/Waiter.java commons/proper/pool/branches/POOL_1_X/src/test/org/apache/commons/pool/WaiterFactory.java Modified: commons/proper/pool/branches/POOL_1_X/src/java/org/apache/commons/pool/impl/EvictionTimer.java URL: http://svn.apache.org/viewvc/commons/proper/pool/branches/POOL_1_X/src/java/org/apache/commons/pool/impl/EvictionTimer.java?rev=1229443&r1=1229442&r2=1229443&view=diff ============================================================================== --- commons/proper/pool/branches/POOL_1_X/src/java/org/apache/commons/pool/impl/EvictionTimer.java (original) +++ commons/proper/pool/branches/POOL_1_X/src/java/org/apache/commons/pool/impl/EvictionTimer.java Tue Jan 10 01:37:12 2012 @@ -35,6 +35,8 @@ import java.util.TimerTask; * This class has package scope to prevent its inclusion in the pool public API. * The class declaration below should *not* be changed to public. * </p> + * + * @version $Id: $ */ class EvictionTimer { Modified: commons/proper/pool/branches/POOL_1_X/src/test/org/apache/commons/pool/PrivateException.java URL: http://svn.apache.org/viewvc/commons/proper/pool/branches/POOL_1_X/src/test/org/apache/commons/pool/PrivateException.java?rev=1229443&r1=1229442&r2=1229443&view=diff ============================================================================== --- commons/proper/pool/branches/POOL_1_X/src/test/org/apache/commons/pool/PrivateException.java (original) +++ commons/proper/pool/branches/POOL_1_X/src/test/org/apache/commons/pool/PrivateException.java Tue Jan 10 01:37:12 2012 @@ -19,6 +19,8 @@ package org.apache.commons.pool; /** * An exception that only is thrown by these tests. + * + * @version $Id$ */ public class PrivateException extends RuntimeException { public PrivateException(final String message) { Modified: commons/proper/pool/branches/POOL_1_X/src/test/org/apache/commons/pool/VisitTracker.java URL: http://svn.apache.org/viewvc/commons/proper/pool/branches/POOL_1_X/src/test/org/apache/commons/pool/VisitTracker.java?rev=1229443&r1=1229442&r2=1229443&view=diff ============================================================================== --- commons/proper/pool/branches/POOL_1_X/src/test/org/apache/commons/pool/VisitTracker.java (original) +++ commons/proper/pool/branches/POOL_1_X/src/test/org/apache/commons/pool/VisitTracker.java Tue Jan 10 01:37:12 2012 @@ -19,7 +19,8 @@ package org.apache.commons.pool; /** * Test pooled object class. Keeps track of how many times it has been * validated, activated, passivated. - * + * + * @version $Id: $ */ public class VisitTracker<K> { private int validateCount = 0; Modified: commons/proper/pool/branches/POOL_1_X/src/test/org/apache/commons/pool/VisitTrackerFactory.java URL: http://svn.apache.org/viewvc/commons/proper/pool/branches/POOL_1_X/src/test/org/apache/commons/pool/VisitTrackerFactory.java?rev=1229443&r1=1229442&r2=1229443&view=diff ============================================================================== --- commons/proper/pool/branches/POOL_1_X/src/test/org/apache/commons/pool/VisitTrackerFactory.java (original) +++ commons/proper/pool/branches/POOL_1_X/src/test/org/apache/commons/pool/VisitTrackerFactory.java Tue Jan 10 01:37:12 2012 @@ -20,7 +20,8 @@ package org.apache.commons.pool; /** * Factory that creates VisitTracker instances. Used to * test Evictor runs. - * + * + * @version $Id: $ */ public class VisitTrackerFactory<K> implements PoolableObjectFactory<VisitTracker<K>>, KeyedPoolableObjectFactory<K, VisitTracker<K>> { Modified: commons/proper/pool/branches/POOL_1_X/src/test/org/apache/commons/pool/Waiter.java URL: http://svn.apache.org/viewvc/commons/proper/pool/branches/POOL_1_X/src/test/org/apache/commons/pool/Waiter.java?rev=1229443&r1=1229442&r2=1229443&view=diff ============================================================================== --- commons/proper/pool/branches/POOL_1_X/src/test/org/apache/commons/pool/Waiter.java (original) +++ commons/proper/pool/branches/POOL_1_X/src/test/org/apache/commons/pool/Waiter.java Tue Jan 10 01:37:12 2012 @@ -23,6 +23,8 @@ package org.apache.commons.pool; * {@link #doWait()} method is called.</p> * * <p>This class is *not* threadsafe.</p> + * + * @version $Id: $ */ public class Waiter { private boolean active = false; Modified: commons/proper/pool/branches/POOL_1_X/src/test/org/apache/commons/pool/WaiterFactory.java URL: http://svn.apache.org/viewvc/commons/proper/pool/branches/POOL_1_X/src/test/org/apache/commons/pool/WaiterFactory.java?rev=1229443&r1=1229442&r2=1229443&view=diff ============================================================================== --- commons/proper/pool/branches/POOL_1_X/src/test/org/apache/commons/pool/WaiterFactory.java (original) +++ commons/proper/pool/branches/POOL_1_X/src/test/org/apache/commons/pool/WaiterFactory.java Tue Jan 10 01:37:12 2012 @@ -27,7 +27,8 @@ import java.util.Map; * If the factory's maxActive / maxActivePerKey are set to match those of the * pool, makeObject will throw IllegalStateException if the number of makes - destroys * (per key) exceeds the configured max. - * + * + * @version $Id: $ */ public class WaiterFactory<K> implements PoolableObjectFactory<Waiter>, KeyedPoolableObjectFactory<K, Waiter> {