You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2023/03/05 14:27:10 UTC

[commons-pool] 01/04: Javadoc

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-pool.git

commit bb4735fb27529fd66f31e4e5b493e2b4acf69f79
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun Mar 5 08:43:27 2023 -0500

    Javadoc
---
 src/main/java/org/apache/commons/pool2/PooledObject.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/pool2/PooledObject.java b/src/main/java/org/apache/commons/pool2/PooledObject.java
index 6403d33b..bdb550e6 100644
--- a/src/main/java/org/apache/commons/pool2/PooledObject.java
+++ b/src/main/java/org/apache/commons/pool2/PooledObject.java
@@ -150,7 +150,7 @@ public interface PooledObject<T> extends Comparable<PooledObject<T>> {
 
     /**
      * Gets the time (using the same basis as
-     * {@link System#currentTimeMillis()}) that this object was created.
+     * {@link java.time.Clock#instant()}) that this object was created.
      *
      * @return The creation time for the wrapped object.
      * @deprecated Use {@link #getCreateInstant()} which offers the best precision.