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 467d8208 Javadoc spelling 467d8208 is described below commit 467d82087d0e678969512a2a4705e3cb78dacaf8 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Nov 26 16:00:37 2023 -0500 Javadoc spelling --- .../src/main/java/org/apache/commons/vfs2/cache/WeakRefFilesCache.java | 2 +- .../src/main/java/org/apache/commons/vfs2/filter/RegexFileFilter.java | 2 +- .../main/java/org/apache/commons/vfs2/filter/WildcardFileFilter.java | 2 +- .../src/test/java/org/apache/commons/vfs2/AbstractTestSuite.java | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/commons-vfs2/src/main/java/org/apache/commons/vfs2/cache/WeakRefFilesCache.java b/commons-vfs2/src/main/java/org/apache/commons/vfs2/cache/WeakRefFilesCache.java index aee099f3..2d8cf5c6 100644 --- a/commons-vfs2/src/main/java/org/apache/commons/vfs2/cache/WeakRefFilesCache.java +++ b/commons-vfs2/src/main/java/org/apache/commons/vfs2/cache/WeakRefFilesCache.java @@ -23,7 +23,7 @@ import java.lang.ref.WeakReference; import org.apache.commons.vfs2.FileObject; /** - * This implementation caches every file as long as it is strongly reachable by the java vm. As soon as the object is no + * This implementation caches every file as long as it is strongly reachable by the Java vm. As soon as the object is no * longer reachable it will be discarded. In contrast to the SoftRefFilesCache this implementation might free resources * faster as it doesn't wait until a memory limitation. * diff --git a/commons-vfs2/src/main/java/org/apache/commons/vfs2/filter/RegexFileFilter.java b/commons-vfs2/src/main/java/org/apache/commons/vfs2/filter/RegexFileFilter.java index 2279f0f4..26660dfd 100644 --- a/commons-vfs2/src/main/java/org/apache/commons/vfs2/filter/RegexFileFilter.java +++ b/commons-vfs2/src/main/java/org/apache/commons/vfs2/filter/RegexFileFilter.java @@ -29,7 +29,7 @@ import org.apache.commons.vfs2.FileSelectInfo; * </p> * * <p> - * For example, to retrieve and print all java files where the name matched the + * For example, to retrieve and print all Java files where the name matched the * regular expression in the current directory: * </p> * diff --git a/commons-vfs2/src/main/java/org/apache/commons/vfs2/filter/WildcardFileFilter.java b/commons-vfs2/src/main/java/org/apache/commons/vfs2/filter/WildcardFileFilter.java index e36ce633..ce5f58bc 100644 --- a/commons-vfs2/src/main/java/org/apache/commons/vfs2/filter/WildcardFileFilter.java +++ b/commons-vfs2/src/main/java/org/apache/commons/vfs2/filter/WildcardFileFilter.java @@ -39,7 +39,7 @@ import org.apache.commons.vfs2.FileSelectInfo; * command lines. * </p> * <p> - * For example, to retrieve and print all java files that have the expression + * For example, to retrieve and print all Java files that have the expression * test in the name in the current directory: * </p> * diff --git a/commons-vfs2/src/test/java/org/apache/commons/vfs2/AbstractTestSuite.java b/commons-vfs2/src/test/java/org/apache/commons/vfs2/AbstractTestSuite.java index 51d9513f..e87b30c3 100644 --- a/commons-vfs2/src/test/java/org/apache/commons/vfs2/AbstractTestSuite.java +++ b/commons-vfs2/src/test/java/org/apache/commons/vfs2/AbstractTestSuite.java @@ -326,7 +326,7 @@ public abstract class AbstractTestSuite extends TestSetup { final String message = dumpThreadSnapshot(diffThreadSnapshot); /* * if (providerConfig.checkCleanThreadState()) { // close the manager to do a "not thread safe" release of - * all resources // and allow the vm to shutdown manager.close(); fail(message); } else { + * all resources // and allow the VM to shutdown manager.close(); fail(message); } else { */ System.out.print(message); // }