Author: psteitz
Date: Mon Apr 12 00:20:41 2010
New Revision: 933054

URL: http://svn.apache.org/viewvc?rev=933054&view=rev
Log:
Suppressed checkstyle visibility checks for deprecated fields.

Modified:
    
commons/proper/pool/trunk/src/java/org/apache/commons/pool/impl/GenericKeyedObjectPool.java

Modified: 
commons/proper/pool/trunk/src/java/org/apache/commons/pool/impl/GenericKeyedObjectPool.java
URL: 
http://svn.apache.org/viewvc/commons/proper/pool/trunk/src/java/org/apache/commons/pool/impl/GenericKeyedObjectPool.java?rev=933054&r1=933053&r2=933054&view=diff
==============================================================================
--- 
commons/proper/pool/trunk/src/java/org/apache/commons/pool/impl/GenericKeyedObjectPool.java
 (original)
+++ 
commons/proper/pool/trunk/src/java/org/apache/commons/pool/impl/GenericKeyedObjectPool.java
 Mon Apr 12 00:20:41 2010
@@ -2208,7 +2208,7 @@ public class GenericKeyedObjectPool exte
      * This is also used by {...@link GenericObjectPool}.
      */
     static class ObjectTimestampPair implements Comparable {
-        
+        //CHECKSTYLE: stop VisibilityModifier
         /** 
          * Object instance 
          * @deprecated this field will be made private and final in version 2.0
@@ -2220,6 +2220,7 @@ public class GenericKeyedObjectPool exte
          * @deprecated this field will be made private and final in version 2.0
          */
         long tstamp;
+        //CHECKSTYLE: resume VisibilityModifier
 
         /**
          * Create a new ObjectTimestampPair using the given object and the 
current system time.


Reply via email to