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
commit fc7320f9812d5140b7efd982e06ec60a97959cd5 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Fri Oct 20 15:15:07 2023 -0400 Javadoc --- src/main/java/org/apache/commons/lang3/time/StopWatch.java | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/lang3/time/StopWatch.java b/src/main/java/org/apache/commons/lang3/time/StopWatch.java index 0ab42fa8a..beefe77b6 100644 --- a/src/main/java/org/apache/commons/lang3/time/StopWatch.java +++ b/src/main/java/org/apache/commons/lang3/time/StopWatch.java @@ -212,12 +212,18 @@ public class StopWatch { private long startTimeNanos; /** - * The start time in milliseconds - nanoTime is only for elapsed time so we need to also store the currentTimeMillis to maintain the old getStartTime API. + * The start time in milliseconds. + * <p> + * nanoTime is only for elapsed time so we need to also store the currentTimeMillis to maintain the old getStartTime API. + * </p> */ private long startTimeMillis; /** - * The end time in milliseconds - nanoTime is only for elapsed time so we need to also store the currentTimeMillis to maintain the old getStartTime API. + * The end time in milliseconds. + * <p> + * nanoTime is only for elapsed time so we need to also store the currentTimeMillis to maintain the old getStartTime API. + * </p> */ private long stopTimeMillis; @@ -228,7 +234,6 @@ public class StopWatch { /** * Constructor. - * */ public StopWatch() { this(null);