Checkstyle: DeclarationOrder, IDE autoformatted Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/75e6c12a Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/75e6c12a Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/75e6c12a
Branch: refs/heads/master Commit: 75e6c12ae4ec26c5bf14f8ce6179f926efd7b94a Parents: caa5a6e Author: rpopma <[email protected]> Authored: Thu Sep 24 09:27:31 2015 +0200 Committer: rpopma <[email protected]> Committed: Thu Sep 24 09:27:31 2015 +0200 ---------------------------------------------------------------------- .../src/main/java/org/apache/logging/log4j/spi/Provider.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/75e6c12a/log4j-api/src/main/java/org/apache/logging/log4j/spi/Provider.java ---------------------------------------------------------------------- diff --git a/log4j-api/src/main/java/org/apache/logging/log4j/spi/Provider.java b/log4j-api/src/main/java/org/apache/logging/log4j/spi/Provider.java index 69c2a78..cd54d43 100644 --- a/log4j-api/src/main/java/org/apache/logging/log4j/spi/Provider.java +++ b/log4j-api/src/main/java/org/apache/logging/log4j/spi/Provider.java @@ -28,7 +28,6 @@ import org.apache.logging.log4j.status.StatusLogger; * not be used by providers. */ public class Provider { - private static final Integer DEFAULT_PRIORITY = Integer.valueOf(-1); /** * Property name to set for a Log4j 2 provider to specify the priority of this implementation. */ @@ -42,6 +41,7 @@ public class Provider { */ public static final String LOGGER_CONTEXT_FACTORY = "LoggerContextFactory"; + private static final Integer DEFAULT_PRIORITY = Integer.valueOf(-1); private static final Logger LOGGER = StatusLogger.getLogger(); private final Integer priority; @@ -99,8 +99,7 @@ public class Provider { } /** - * Gets the class name of the {@link org.apache.logging.log4j.spi.ThreadContextMap} implementation of this - * Provider. + * Gets the class name of the {@link org.apache.logging.log4j.spi.ThreadContextMap} implementation of this Provider. * * @return the class name of a ThreadContextMap implementation */
