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 2021/09/15 15:38:22 UTC

[commons-io] 01/04: Nicer 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-io.git

commit d6d5d0beeec5846e61728a950bf52c916ccad0a9
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Wed Sep 15 10:03:23 2021 -0400

    Nicer Javadoc.
---
 .../java/org/apache/commons/io/file/CountingPathVisitor.java     | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/src/main/java/org/apache/commons/io/file/CountingPathVisitor.java b/src/main/java/org/apache/commons/io/file/CountingPathVisitor.java
index f9ae727..0d96cde 100644
--- a/src/main/java/org/apache/commons/io/file/CountingPathVisitor.java
+++ b/src/main/java/org/apache/commons/io/file/CountingPathVisitor.java
@@ -18,6 +18,7 @@
 package org.apache.commons.io.file;
 
 import java.io.IOException;
+import java.math.BigInteger;
 import java.nio.file.FileVisitResult;
 import java.nio.file.Files;
 import java.nio.file.Path;
@@ -37,18 +38,18 @@ public class CountingPathVisitor extends SimplePathVisitor {
     static final String[] EMPTY_STRING_ARRAY = {};
 
     /**
-     * Creates a new instance configured with a BigInteger {@link PathCounters}.
+     * Creates a new instance configured with a {@link BigInteger} {@link PathCounters}.
      *
-     * @return a new instance configured with a BigInteger {@link PathCounters}.
+     * @return a new instance configured with a {@link BigInteger} {@link PathCounters}.
      */
     public static CountingPathVisitor withBigIntegerCounters() {
         return new CountingPathVisitor(Counters.bigIntegerPathCounters());
     }
 
     /**
-     * Creates a new instance configured with a long {@link PathCounters}.
+     * Creates a new instance configured with a {@code long} {@link PathCounters}.
      *
-     * @return a new instance configured with a long {@link PathCounters}.
+     * @return a new instance configured with a {@code long} {@link PathCounters}.
      */
     public static CountingPathVisitor withLongCounters() {
         return new CountingPathVisitor(Counters.longPathCounters());