Author: psteitz
Date: Sun Apr 11 23:56:50 2010
New Revision: 933038

URL: http://svn.apache.org/viewvc?rev=933038&view=rev
Log:
Deprecated fields that should be private in preparation to make 
ObjectIimeStampPair immutable in 2.0.

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=933038&r1=933037&r2=933038&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
 Sun Apr 11 23:56:50 2010
@@ -2209,10 +2209,16 @@ public class GenericKeyedObjectPool exte
      */
     static class ObjectTimestampPair implements Comparable {
         
-        /** Object instance */
+        /** 
+         * Object instance 
+         * @deprecated this field will be made private and final in version 2.0
+         */
         Object value;
         
-        /** timestamp */
+        /**
+         * timestamp
+         * @deprecated this field will be made private and final in version 2.0
+         */
         long tstamp;
 
         /**


Reply via email to