Repository: logging-log4j2 Updated Branches: refs/heads/master cb48e052c -> 989d894c1
Fix Javadoc warning. Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/989d894c Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/989d894c Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/989d894c Branch: refs/heads/master Commit: 989d894c1c6e1aa904751b6de30d62b67746414b Parents: cb48e05 Author: Gary Gregory <[email protected]> Authored: Wed Jan 24 13:11:19 2018 -0700 Committer: Gary Gregory <[email protected]> Committed: Wed Jan 24 13:11:19 2018 -0700 ---------------------------------------------------------------------- .../java/org/apache/logging/log4j/core/filter/AbstractFilter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/989d894c/log4j-core/src/main/java/org/apache/logging/log4j/core/filter/AbstractFilter.java ---------------------------------------------------------------------- diff --git a/log4j-core/src/main/java/org/apache/logging/log4j/core/filter/AbstractFilter.java b/log4j-core/src/main/java/org/apache/logging/log4j/core/filter/AbstractFilter.java index 00807ec..b27b238 100644 --- a/log4j-core/src/main/java/org/apache/logging/log4j/core/filter/AbstractFilter.java +++ b/log4j-core/src/main/java/org/apache/logging/log4j/core/filter/AbstractFilter.java @@ -27,7 +27,7 @@ import org.apache.logging.log4j.message.Message; /** * Users should extend this class to implement filters. Filters can be either context wide or attached to * an appender. A filter may choose to support being called only from the context or only from an appender in - * which case it will only implement the required method(s). The rest will default to return {@link Result#NEUTRAL}. + * which case it will only implement the required method(s). The rest will default to return {@link org.apache.logging.log4j.core.Filter.Result#NEUTRAL}. * <p> * Garbage-free note: the methods with unrolled varargs by default delegate to the * {@link #filter(Logger, Level, Marker, String, Object...) filter method with vararg parameters}.
