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-lang.git
The following commit(s) were added to refs/heads/master by this push: new 32c93eb72 Javadoc new 69e3ba418 Merge branch 'master' of https://gitbox.apache.org/repos/asf/commons-lang.git 32c93eb72 is described below commit 32c93eb7283f3d1285b5a2fd74e94c03689b6ee8 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sat Jul 20 09:04:09 2024 -0400 Javadoc --- src/main/java/org/apache/commons/lang3/time/DurationUtils.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/java/org/apache/commons/lang3/time/DurationUtils.java b/src/main/java/org/apache/commons/lang3/time/DurationUtils.java index a243f4153..9172c2c29 100644 --- a/src/main/java/org/apache/commons/lang3/time/DurationUtils.java +++ b/src/main/java/org/apache/commons/lang3/time/DurationUtils.java @@ -50,6 +50,7 @@ public class DurationUtils { * @param consumer Accepting function. * @param duration The duration to pick apart. * @throws T See the function signature. + * @see StopWatch */ @SuppressWarnings("boxing") // boxing unavoidable public static <T extends Throwable> void accept(final FailableBiConsumer<Long, Integer, T> consumer, final Duration duration) @@ -119,6 +120,7 @@ public class DurationUtils { * @param consumer What to execute. * @return The Duration of execution. * @throws E thrown by the lambda. + * @see StopWatch * @since 3.13.0 */ public static <E extends Throwable> Duration of(final FailableConsumer<Instant, E> consumer) throws E { @@ -132,6 +134,7 @@ public class DurationUtils { * @param runnable What to execute. * @return The Duration of execution. * @throws E thrown by the lambda. + * @see StopWatch * @since 3.13.0 */ public static <E extends Throwable> Duration of(final FailableRunnable<E> runnable) throws E {