Skip to content

Commit 0850166

Browse files
committed
Fix Javadoc since tags
1 parent e0892e0 commit 0850166

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/main/java/org/apache/commons/io/file/AccumulatorPathVisitor.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public class AccumulatorPathVisitor extends CountingPathVisitor {
6363
/**
6464
* Builds instances of {@link AccumulatorPathVisitor}.
6565
*
66-
* @since 2.18.0
66+
* @since 2.19.0
6767
*/
6868
public static class Builder extends AbstractBuilder<AccumulatorPathVisitor, Builder> {
6969

@@ -85,7 +85,7 @@ public AccumulatorPathVisitor get() {
8585
* Builds instances of {@link AccumulatorPathVisitor}.
8686
*
8787
* @return a new builder.
88-
* @since 2.18.0
88+
* @since 2.19.0
8989
*/
9090
public static Builder builder() {
9191
return new Builder();

src/main/java/org/apache/commons/io/file/CountingPathVisitor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public class CountingPathVisitor extends SimplePathVisitor {
4444
*
4545
* @param <T> The CountingPathVisitor type.
4646
* @param <B> The AbstractBuilder type.
47-
* @since 2.18.0
47+
* @since 2.19.0
4848
*/
4949
public abstract static class AbstractBuilder<T, B extends AbstractBuilder<T, B>> extends SimplePathVisitor.AbstractBuilder<T, B> {
5050

src/main/java/org/apache/commons/io/file/SimplePathVisitor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public abstract class SimplePathVisitor extends SimpleFileVisitor<Path> implemen
3838
*
3939
* @param <T> The SimplePathVisitor type.
4040
* @param <B> The builder type.
41-
* @since 2.18.0
41+
* @since 2.19.0
4242
*/
4343
protected abstract static class AbstractBuilder<T, B extends AbstractSupplier<T, B>> extends AbstractSupplier<T, B> {
4444

0 commit comments

Comments
 (0)