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-jci.git
The following commit(s) were added to refs/heads/master by this push: new c8b24a0 Javadoc c8b24a0 is described below commit c8b24a01cdf3da1c4dd4c72848270301ed0e5e72 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Thu Dec 14 13:54:16 2023 -0500 Javadoc --- .../apache/commons/jci2/fam/monitor/FilesystemAlterationMonitor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fam/src/main/java/org/apache/commons/jci2/fam/monitor/FilesystemAlterationMonitor.java b/fam/src/main/java/org/apache/commons/jci2/fam/monitor/FilesystemAlterationMonitor.java index 69f4dd7..6e178e1 100644 --- a/fam/src/main/java/org/apache/commons/jci2/fam/monitor/FilesystemAlterationMonitor.java +++ b/fam/src/main/java/org/apache/commons/jci2/fam/monitor/FilesystemAlterationMonitor.java @@ -38,7 +38,7 @@ public final class FilesystemAlterationMonitor implements Runnable { private final Object observersLock = new Object(); private Map<File, FilesystemAlterationObserver> observers = Collections.unmodifiableMap(new HashMap<File, FilesystemAlterationObserver>()); - /** delay between calls to {@link FilesystemAlterationObserver#checkAndNotify()}, default 3000 ms */ + /** Delay between calls to {@link FilesystemAlterationObserver#checkAndNotify()}, default 3000 ms */ private volatile long delay = 3000; // volatile because shared with daemon thread private Thread thread;