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-io.git
commit 27ed17bf75e658d1b4b96be04345cf9892566425 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Mon Sep 6 14:42:53 2021 -0400 Javadoc: Close HTML tags. --- src/main/java/org/apache/commons/io/input/TailerListener.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/java/org/apache/commons/io/input/TailerListener.java b/src/main/java/org/apache/commons/io/input/TailerListener.java index dc26c14..015c109 100644 --- a/src/main/java/org/apache/commons/io/input/TailerListener.java +++ b/src/main/java/org/apache/commons/io/input/TailerListener.java @@ -34,6 +34,7 @@ public interface TailerListener { * This method is called if the tailed file is not found. * <p> * <b>Note:</b> this is called from the tailer thread. + * </p> */ void fileNotFound(); @@ -44,6 +45,7 @@ public interface TailerListener { * be called if the new file has not yet been created. * <p> * <b>Note:</b> this is called from the tailer thread. + * </p> */ void fileRotated(); @@ -52,6 +54,7 @@ public interface TailerListener { * <p> * <b>Note:</b> this is called from the tailer thread. * @param line the line. + * </p> */ void handle(String line); @@ -60,6 +63,7 @@ public interface TailerListener { * <p> * <b>Note:</b> this is called from the tailer thread. * @param ex the exception. + * </p> */ void handle(Exception ex);