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
The following commit(s) were added to refs/heads/master by this push: new 8f5d0a3d Javadoc 8f5d0a3d is described below commit 8f5d0a3d90dd50367e423886e48184bf011e730e Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sat Jul 16 07:58:25 2022 -0400 Javadoc --- .../src/main/java/org/apache/commons/vfs2/FileSelectInfo.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/commons-vfs2/src/main/java/org/apache/commons/vfs2/FileSelectInfo.java b/commons-vfs2/src/main/java/org/apache/commons/vfs2/FileSelectInfo.java index fac53489..dc794e7a 100644 --- a/commons-vfs2/src/main/java/org/apache/commons/vfs2/FileSelectInfo.java +++ b/commons-vfs2/src/main/java/org/apache/commons/vfs2/FileSelectInfo.java @@ -25,21 +25,21 @@ package org.apache.commons.vfs2; public interface FileSelectInfo { /** - * Returns the base folder of the traversal. + * Gets the base folder of the traversal. * * @return FileObject representing the base folder. */ FileObject getBaseFolder(); /** - * Returns the depth of the file relative to the base folder. + * Gets the depth of the file relative to the base folder. * * @return The depth of the file relative to the base folder. */ int getDepth(); /** - * Returns the file (or folder) to be considered. + * Gets the file (or folder) to be considered. * * @return The FileObject. */