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-vfs.git
commit 2bbd2830bc2059a1187339a335b86b6daf32e877 Author: Gary Gregory <[email protected]> AuthorDate: Sun Jan 4 15:49:47 2026 -0500 Javadoc Add an empty line before a Javadoc comment --- .../src/main/java/org/apache/commons/vfs2/example/Shell.java | 1 + .../src/main/java/org/apache/commons/vfs2/example/ShowProperties.java | 1 + .../org/apache/commons/vfs2/example/filter/AgeFileFilterExample.java | 1 + .../org/apache/commons/vfs2/example/filter/CanReadFileFilterExample.java | 1 + .../apache/commons/vfs2/example/filter/CanWriteFileFilterExample.java | 1 + .../apache/commons/vfs2/example/filter/DirectoryFileFilterExample.java | 1 + .../org/apache/commons/vfs2/example/filter/EmptyFileFilterExample.java | 1 + .../org/apache/commons/vfs2/example/filter/FileFileFilterExample.java | 1 + .../org/apache/commons/vfs2/example/filter/HiddenFileFilterExample.java | 1 + .../org/apache/commons/vfs2/example/filter/NameFileFilterExample.java | 1 + .../org/apache/commons/vfs2/example/filter/PrefixFileFilterExample.java | 1 + .../org/apache/commons/vfs2/example/filter/RegexFileFilterExample.java | 1 + .../org/apache/commons/vfs2/example/filter/SizeFileFilterExample.java | 1 + .../org/apache/commons/vfs2/example/filter/SuffixFileFilterExample.java | 1 + .../apache/commons/vfs2/example/filter/WildcardFileFilterExample.java | 1 + 15 files changed, 15 insertions(+) diff --git a/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/Shell.java b/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/Shell.java index 6cbe19bf0..eeb4ca72f 100644 --- a/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/Shell.java +++ b/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/Shell.java @@ -58,6 +58,7 @@ public final class Shell { return "N/A"; } } + /** * Invokes this example from the command line. * diff --git a/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/ShowProperties.java b/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/ShowProperties.java index 59f29dba0..829919f56 100644 --- a/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/ShowProperties.java +++ b/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/ShowProperties.java @@ -29,6 +29,7 @@ import org.apache.commons.vfs2.VFS; * Example which prints all properties of the file passed as first parameter. */ public final class ShowProperties { + /** Maximum number of children to show. */ private static final int SHOW_MAX = 5; diff --git a/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/AgeFileFilterExample.java b/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/AgeFileFilterExample.java index 3404b83be..818e39a01 100644 --- a/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/AgeFileFilterExample.java +++ b/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/AgeFileFilterExample.java @@ -29,6 +29,7 @@ import org.apache.commons.vfs2.filter.AgeFileFilter; */ // CHECKSTYLE:OFF Example code public final class AgeFileFilterExample { + /** * Invokes this example from the command line. * diff --git a/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/CanReadFileFilterExample.java b/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/CanReadFileFilterExample.java index 5754c7610..b9e8520aa 100644 --- a/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/CanReadFileFilterExample.java +++ b/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/CanReadFileFilterExample.java @@ -29,6 +29,7 @@ import org.apache.commons.vfs2.filter.CanReadFileFilter; */ // CHECKSTYLE:OFF Example code public final class CanReadFileFilterExample { + /** * Invokes this example from the command line. * diff --git a/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/CanWriteFileFilterExample.java b/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/CanWriteFileFilterExample.java index 9807080e9..955ed0fda 100644 --- a/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/CanWriteFileFilterExample.java +++ b/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/CanWriteFileFilterExample.java @@ -29,6 +29,7 @@ import org.apache.commons.vfs2.filter.CanWriteFileFilter; */ // CHECKSTYLE:OFF Example code public final class CanWriteFileFilterExample { + /** * Invokes this example from the command line. * diff --git a/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/DirectoryFileFilterExample.java b/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/DirectoryFileFilterExample.java index 49cfa2a25..7f4835169 100644 --- a/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/DirectoryFileFilterExample.java +++ b/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/DirectoryFileFilterExample.java @@ -29,6 +29,7 @@ import org.apache.commons.vfs2.filter.DirectoryFileFilter; */ // CHECKSTYLE:OFF Example code public final class DirectoryFileFilterExample { + /** * Invokes this example from the command line. * diff --git a/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/EmptyFileFilterExample.java b/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/EmptyFileFilterExample.java index 4267da387..b902cc696 100644 --- a/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/EmptyFileFilterExample.java +++ b/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/EmptyFileFilterExample.java @@ -29,6 +29,7 @@ import org.apache.commons.vfs2.filter.EmptyFileFilter; */ // CHECKSTYLE:OFF Example code public final class EmptyFileFilterExample { + /** * Invokes this example from the command line. * diff --git a/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/FileFileFilterExample.java b/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/FileFileFilterExample.java index a9f479662..07431e017 100644 --- a/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/FileFileFilterExample.java +++ b/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/FileFileFilterExample.java @@ -29,6 +29,7 @@ import org.apache.commons.vfs2.filter.FileFileFilter; */ // CHECKSTYLE:OFF Example code public final class FileFileFilterExample { + /** * Invokes this example from the command line. * diff --git a/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/HiddenFileFilterExample.java b/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/HiddenFileFilterExample.java index fcd335bbb..de3e2c900 100644 --- a/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/HiddenFileFilterExample.java +++ b/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/HiddenFileFilterExample.java @@ -29,6 +29,7 @@ import org.apache.commons.vfs2.filter.HiddenFileFilter; */ // CHECKSTYLE:OFF Example code public final class HiddenFileFilterExample { + /** * Invokes this example from the command line. * diff --git a/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/NameFileFilterExample.java b/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/NameFileFilterExample.java index 0afcbf895..03cf08be0 100644 --- a/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/NameFileFilterExample.java +++ b/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/NameFileFilterExample.java @@ -29,6 +29,7 @@ import org.apache.commons.vfs2.filter.NameFileFilter; */ // CHECKSTYLE:OFF Example code public final class NameFileFilterExample { + /** * Invokes this example from the command line. * diff --git a/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/PrefixFileFilterExample.java b/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/PrefixFileFilterExample.java index 9733c38c3..2f9ccf452 100644 --- a/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/PrefixFileFilterExample.java +++ b/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/PrefixFileFilterExample.java @@ -29,6 +29,7 @@ import org.apache.commons.vfs2.filter.PrefixFileFilter; */ // CHECKSTYLE:OFF Example code public final class PrefixFileFilterExample { + /** * Invokes this example from the command line. * diff --git a/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/RegexFileFilterExample.java b/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/RegexFileFilterExample.java index a84b70126..0a4b37486 100644 --- a/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/RegexFileFilterExample.java +++ b/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/RegexFileFilterExample.java @@ -29,6 +29,7 @@ import org.apache.commons.vfs2.filter.RegexFileFilter; */ // CHECKSTYLE:OFF Example code public final class RegexFileFilterExample { + /** * Invokes this example from the command line. * diff --git a/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/SizeFileFilterExample.java b/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/SizeFileFilterExample.java index 8807a1052..8fe24ab02 100644 --- a/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/SizeFileFilterExample.java +++ b/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/SizeFileFilterExample.java @@ -29,6 +29,7 @@ import org.apache.commons.vfs2.filter.SizeFileFilter; */ // CHECKSTYLE:OFF Example code public final class SizeFileFilterExample { + /** * Invokes this example from the command line. * diff --git a/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/SuffixFileFilterExample.java b/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/SuffixFileFilterExample.java index b6a146faa..a010ecf23 100644 --- a/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/SuffixFileFilterExample.java +++ b/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/SuffixFileFilterExample.java @@ -29,6 +29,7 @@ import org.apache.commons.vfs2.filter.SuffixFileFilter; */ // CHECKSTYLE:OFF Example code public final class SuffixFileFilterExample { + /** * Invokes this example from the command line. * diff --git a/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/WildcardFileFilterExample.java b/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/WildcardFileFilterExample.java index 77404273c..7b8c37411 100644 --- a/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/WildcardFileFilterExample.java +++ b/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/filter/WildcardFileFilterExample.java @@ -29,6 +29,7 @@ import org.apache.commons.vfs2.filter.WildcardFileFilter; */ // CHECKSTYLE:OFF Example code public final class WildcardFileFilterExample { + /** * Invokes this example from the command line. *
