Author: sebb
Date: Tue Sep 2 18:48:12 2014
New Revision: 1622088
URL: http://svn.apache.org/r1622088
Log:
Correct lock reference
Modified:
commons/proper/pool/trunk/src/main/java/org/apache/commons/pool2/impl/EvictionTimer.java
Modified:
commons/proper/pool/trunk/src/main/java/org/apache/commons/pool2/impl/EvictionTimer.java
URL:
http://svn.apache.org/viewvc/commons/proper/pool/trunk/src/main/java/org/apache/commons/pool2/impl/EvictionTimer.java?rev=1622088&r1=1622087&r2=1622088&view=diff
==============================================================================
---
commons/proper/pool/trunk/src/main/java/org/apache/commons/pool2/impl/EvictionTimer.java
(original)
+++
commons/proper/pool/trunk/src/main/java/org/apache/commons/pool2/impl/EvictionTimer.java
Tue Sep 2 18:48:12 2014
@@ -39,10 +39,10 @@ import java.util.TimerTask;
class EvictionTimer {
/** Timer instance */
- private static Timer _timer; //@GuardedBy("this")
+ private static Timer _timer; //@GuardedBy("EvictionTimer.class")
/** Static usage count tracker */
- private static int _usageCount; //@GuardedBy("this")
+ private static int _usageCount; //@GuardedBy("EvictionTimer.class")
/** Prevent instantiation */
private EvictionTimer() {