Skip to content

Commit 65aae9f

Browse files
committed
Add missing param descriptions
1 parent c484e24 commit 65aae9f

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

src/main/java/org/apache/commons/io/monitor/FileAlterationMonitor.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,12 @@ public FileAlterationMonitor(final long interval) {
5656
}
5757

5858
/**
59-
* Wrapper constructor for {@link #FileAlterationMonitor(long, FileAlterationObserver...)}
59+
* Wrapper constructor for {@link #FileAlterationMonitor(long, FileAlterationObserver...)}.
60+
* Constructs a monitor with the specified interval and collection of observers.
61+
*
62+
* @param interval The amount of time in milliseconds to wait between
63+
* checks of the file system
64+
* @param observers The collection of observers to add to the monitor
6065
*/
6166
public FileAlterationMonitor(final long interval, final Collection<FileAlterationObserver> observers) {
6267
this(interval, Optional.ofNullable(observers)

0 commit comments

Comments
 (0)