Checkstyle: DeclarationOrder, IDE autoformat

Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo
Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/6c326a9a
Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/6c326a9a
Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/6c326a9a

Branch: refs/heads/LOG4J2-1136
Commit: 6c326a9ac1c24bfc2fab248633d96ebf7adc5db0
Parents: 729251a
Author: rpopma <[email protected]>
Authored: Thu Sep 24 10:03:37 2015 +0200
Committer: Ralph Goers <[email protected]>
Committed: Sun Sep 27 10:47:29 2015 -0700

----------------------------------------------------------------------
 .../apache/logging/log4j/util/ProviderUtil.java | 36 ++++++++++----------
 1 file changed, 18 insertions(+), 18 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/6c326a9a/log4j-api/src/main/java/org/apache/logging/log4j/util/ProviderUtil.java
----------------------------------------------------------------------
diff --git 
a/log4j-api/src/main/java/org/apache/logging/log4j/util/ProviderUtil.java 
b/log4j-api/src/main/java/org/apache/logging/log4j/util/ProviderUtil.java
index e26fbcb..7018c36 100644
--- a/log4j-api/src/main/java/org/apache/logging/log4j/util/ProviderUtil.java
+++ b/log4j-api/src/main/java/org/apache/logging/log4j/util/ProviderUtil.java
@@ -30,10 +30,9 @@ import org.apache.logging.log4j.spi.Provider;
 import org.apache.logging.log4j.status.StatusLogger;
 
 /**
- * <em>Consider this class private.</em>
- * Utility class for Log4j {@link Provider}s. When integrating with an 
application container framework, any Log4j
- * Providers not accessible through standard classpath scanning should {@link 
#loadProvider(java.net.URL, ClassLoader)}
- * a classpath accordingly.
+ * <em>Consider this class private.</em> Utility class for Log4j {@link 
Provider}s. When integrating with an application
+ * container framework, any Log4j Providers not accessible through standard 
classpath scanning should
+ * {@link #loadProvider(java.net.URL, ClassLoader)} a classpath accordingly.
  */
 public final class ProviderUtil {
 
@@ -41,14 +40,10 @@ public final class ProviderUtil {
      * Resource name for a Log4j 2 provider properties file.
      */
     protected static final String PROVIDER_RESOURCE = 
"META-INF/log4j-provider.properties";
-    private static final String API_VERSION = "Log4jAPIVersion";
-
-    private static final String[] COMPATIBLE_API_VERSIONS = {
-        "2.0.0", "2.1.0"
-    };
-
-    private static final Logger LOGGER = StatusLogger.getLogger();
 
+    /**
+     * Loaded providers.
+     */
     protected static final Collection<Provider> PROVIDERS = new HashSet<>();
 
     /**
@@ -57,9 +52,14 @@ public final class ProviderUtil {
      * @since 2.1
      */
     protected static final Lock STARTUP_LOCK = new ReentrantLock();
+
+    private static final String API_VERSION = "Log4jAPIVersion";
+    private static final String[] COMPATIBLE_API_VERSIONS = { "2.0.0", "2.1.0" 
};
+    private static final Logger LOGGER = StatusLogger.getLogger();
+
     // STARTUP_LOCK guards INSTANCE for lazy initialization; this allows the 
OSGi Activator to pause the startup and
     // wait for a Provider to be installed. See LOG4J2-373
-    private static volatile ProviderUtil INSTANCE;
+    private static volatile ProviderUtil instance;
 
     private ProviderUtil() {
         for (final LoaderUtil.UrlResource resource : 
LoaderUtil.findUrlResources(PROVIDER_RESOURCE)) {
@@ -68,8 +68,8 @@ public final class ProviderUtil {
     }
 
     /**
-     * Loads an individual Provider implementation. This method is really only 
useful for the OSGi bundle activator
-     * and this class itself.
+     * Loads an individual Provider implementation. This method is really only 
useful for the OSGi bundle activator and
+     * this class itself.
      *
      * @param url the URL to the provider properties file
      * @param cl the ClassLoader to load the provider classes with
@@ -113,13 +113,13 @@ public final class ProviderUtil {
      * @since 2.1
      */
     protected static void lazyInit() {
-        //noinspection DoubleCheckedLocking
-        if (INSTANCE == null) {
+        // noinspection DoubleCheckedLocking
+        if (instance == null) {
             try {
                 STARTUP_LOCK.lockInterruptibly();
                 try {
-                    if (INSTANCE == null) {
-                        INSTANCE = new ProviderUtil();
+                    if (instance == null) {
+                        instance = new ProviderUtil();
                     }
                 } finally {
                     STARTUP_LOCK.unlock();

Reply via email to