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 fa9f49b5429143626562b080f6f9e58230f4cfee Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Mon Jul 28 06:56:04 2025 -0400 Javadoc --- .../main/java/org/apache/commons/vfs2/cache/WeakRefFilesCache.java | 6 +++--- 1 file changed, 3 insertions(+), 3 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 3363aacb1..d30a1af56 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 @@ -14,6 +14,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ + package org.apache.commons.vfs2.cache; import java.lang.ref.Reference; @@ -23,9 +24,8 @@ 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 - * 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. + * 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 + * {@link SoftRefFilesCache} this implementation might free resources faster as it doesn't wait until a memory limitation. * * @see java.lang.ref.WeakReference */