You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by rg...@apache.org on 2015/09/27 20:40:54 UTC

[02/50] [abbrv] logging-log4j2 git commit: Checkstyle: DeclarationOrder, also IDE autoformatted

Checkstyle: DeclarationOrder, also 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/3dd3aff3
Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/3dd3aff3
Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/3dd3aff3

Branch: refs/heads/LOG4J2-1136
Commit: 3dd3aff3058da0929a7c18be9217c393aab836de
Parents: 6a162c4
Author: rpopma <rp...@apache.org>
Authored: Thu Sep 24 09:07:07 2015 +0200
Committer: Ralph Goers <rg...@nextiva.com>
Committed: Sun Sep 27 10:47:27 2015 -0700

----------------------------------------------------------------------
 .../logging/log4j/message/ParameterizedMessageFactory.java      | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/3dd3aff3/log4j-api/src/main/java/org/apache/logging/log4j/message/ParameterizedMessageFactory.java
----------------------------------------------------------------------
diff --git a/log4j-api/src/main/java/org/apache/logging/log4j/message/ParameterizedMessageFactory.java b/log4j-api/src/main/java/org/apache/logging/log4j/message/ParameterizedMessageFactory.java
index 8f503a7..5e97145 100644
--- a/log4j-api/src/main/java/org/apache/logging/log4j/message/ParameterizedMessageFactory.java
+++ b/log4j-api/src/main/java/org/apache/logging/log4j/message/ParameterizedMessageFactory.java
@@ -27,15 +27,16 @@ package org.apache.logging.log4j.message;
  */
 public final class ParameterizedMessageFactory extends AbstractMessageFactory {
 
-    private static final long serialVersionUID = 1L;
-    
     /**
      * Instance of StringFormatterMessageFactory.
      */
     public static final ParameterizedMessageFactory INSTANCE = new ParameterizedMessageFactory();
 
+    private static final long serialVersionUID = 1L;
+
     /**
      * Creates {@link ParameterizedMessage} instances.
+     * 
      * @param message The message pattern.
      * @param params The message parameters.
      * @return The Message.