Repository: logging-log4j2 Updated Branches: refs/heads/master 1496203ff -> bb77c0e80
Better Javadoc. Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/bb77c0e8 Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/bb77c0e8 Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/bb77c0e8 Branch: refs/heads/master Commit: bb77c0e80ef30e2be64a1d53331b87c4da6399db Parents: 1496203 Author: Gary Gregory <[email protected]> Authored: Fri Jul 1 09:13:45 2016 -0700 Committer: Gary Gregory <[email protected]> Committed: Fri Jul 1 09:13:45 2016 -0700 ---------------------------------------------------------------------- .../java/org/apache/logging/log4j/core/filter/AbstractFilter.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/bb77c0e8/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 9473d70..da53312 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,8 +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 NEUTRAL. - * + * which case it will only implement the required method(s). The rest will default to return {@link Result#NEUTRAL}. */ public abstract class AbstractFilter extends AbstractLifeCycle implements Filter {
