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/743e1e77 Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/743e1e77 Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/743e1e77 Branch: refs/heads/LOG4J2-1136 Commit: 743e1e778ea656f04a5101b1e16a1b4df419b3db Parents: 37849fb Author: rpopma <[email protected]> Authored: Thu Sep 24 09:27:31 2015 +0200 Committer: Ralph Goers <[email protected]> Committed: Sun Sep 27 10:47:28 2015 -0700 ---------------------------------------------------------------------- .../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/743e1e77/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 */
