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 efbffc7 Javadoc.
efbffc7 is described below
commit efbffc78807a17f0050f8e623ddef7b0be681f95
Author: Gary Gregory <[email protected]>
AuthorDate: Mon Oct 7 12:19:17 2019 -0400
Javadoc.
---
.../main/java/org/apache/commons/vfs2/util/WeakRefFileListener.java | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git
a/commons-vfs2/src/main/java/org/apache/commons/vfs2/util/WeakRefFileListener.java
b/commons-vfs2/src/main/java/org/apache/commons/vfs2/util/WeakRefFileListener.java
index 67610f8..0d9ac8c 100644
---
a/commons-vfs2/src/main/java/org/apache/commons/vfs2/util/WeakRefFileListener.java
+++
b/commons-vfs2/src/main/java/org/apache/commons/vfs2/util/WeakRefFileListener.java
@@ -25,7 +25,7 @@ import org.apache.commons.vfs2.FileObject;
import org.apache.commons.vfs2.FileSystem;
/**
- * Wrap a listener with a WeakReference.
+ * Wraps a listener with a WeakReference.
*
* @since 2.0
*/
@@ -42,7 +42,7 @@ public class WeakRefFileListener implements FileListener {
}
/**
- * This will install the {@code listener} at the given {@code file}.
+ * Installs the {@code listener} at the given {@code file}.
*
* @param file The FileObject to listen on.
* @param listener The FileListener
@@ -54,7 +54,7 @@ public class WeakRefFileListener implements FileListener {
}
/**
- * returns the wrapped listener. If it is gone, the WeakRefFileListener
wrapper will remove itself from the list of
+ * Gets the wrapped listener. If it is gone, the WeakRefFileListener
wrapper will remove itself from the list of
* listeners.
*
* @return The FileListener.