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:11 UTC

[commons-pool] 02/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 108735e2e262bad80f1f18abe9feae93b5db0624
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun Mar 5 08:46:19 2023 -0500

    Javadoc
---
 .../org/apache/commons/pool2/impl/DefaultPooledObjectInfoMBean.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/main/java/org/apache/commons/pool2/impl/DefaultPooledObjectInfoMBean.java b/src/main/java/org/apache/commons/pool2/impl/DefaultPooledObjectInfoMBean.java
index f7c33e42..33ce08a7 100644
--- a/src/main/java/org/apache/commons/pool2/impl/DefaultPooledObjectInfoMBean.java
+++ b/src/main/java/org/apache/commons/pool2/impl/DefaultPooledObjectInfoMBean.java
@@ -41,7 +41,7 @@ public interface DefaultPooledObjectInfoMBean {
 
     /**
      * Gets the time (using the same basis as
-     * {@link System#currentTimeMillis()}) that pooled object was created.
+     * {@link java.time.Clock#instant()}) that pooled object was created.
      *
      * @return The creation time for the pooled object
      */
@@ -57,7 +57,7 @@ public interface DefaultPooledObjectInfoMBean {
 
     /**
      * Gets the time (using the same basis as
-     * {@link System#currentTimeMillis()}) the polled object was last borrowed.
+     * {@link java.time.Clock#instant()}) the polled object was last borrowed.
      *
      * @return The time the pooled object was last borrowed
      */
@@ -81,7 +81,7 @@ public interface DefaultPooledObjectInfoMBean {
 
     /**
      * Gets the time (using the same basis as
-     * {@link System#currentTimeMillis()})the wrapped object was last returned.
+     * {@link java.time.Clock#instant()})the wrapped object was last returned.
      *
      * @return The time the object was last returned
      */