You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by rp...@apache.org on 2013/04/29 05:32:24 UTC

svn commit: r1476885 - /logging/log4j/log4j2/trunk/core/src/main/java/org/apache/logging/log4j/core/impl/Log4jLogEvent.java

Author: rpopma
Date: Mon Apr 29 03:32:23 2013
New Revision: 1476885

URL: http://svn.apache.org/r1476885
Log:
checkstyle: removed trailing spaces

Modified:
    logging/log4j/log4j2/trunk/core/src/main/java/org/apache/logging/log4j/core/impl/Log4jLogEvent.java

Modified: logging/log4j/log4j2/trunk/core/src/main/java/org/apache/logging/log4j/core/impl/Log4jLogEvent.java
URL: http://svn.apache.org/viewvc/logging/log4j/log4j2/trunk/core/src/main/java/org/apache/logging/log4j/core/impl/Log4jLogEvent.java?rev=1476885&r1=1476884&r2=1476885&view=diff
==============================================================================
--- logging/log4j/log4j2/trunk/core/src/main/java/org/apache/logging/log4j/core/impl/Log4jLogEvent.java (original)
+++ logging/log4j/log4j2/trunk/core/src/main/java/org/apache/logging/log4j/core/impl/Log4jLogEvent.java Mon Apr 29 03:32:23 2013
@@ -282,7 +282,7 @@ public class Log4jLogEvent implements Lo
         return new LogEventProxy(this, this.includeLocation);
     }
 
-    public static Serializable serialize(final Log4jLogEvent event, 
+    public static Serializable serialize(final Log4jLogEvent event,
             final boolean includeLocation) {
         return new LogEventProxy(event, includeLocation);
     }
@@ -293,9 +293,9 @@ public class Log4jLogEvent implements Lo
         }
         if (event instanceof LogEventProxy) {
             final LogEventProxy proxy = (LogEventProxy) event;
-            Log4jLogEvent result = new Log4jLogEvent(proxy.name, proxy.marker, 
-                    proxy.fqcnOfLogger, proxy.level, proxy.message, 
-                    proxy.throwable, proxy.mdc, proxy.ndc, proxy.threadName, 
+            Log4jLogEvent result = new Log4jLogEvent(proxy.name, proxy.marker,
+                    proxy.fqcnOfLogger, proxy.level, proxy.message,
+                    proxy.throwable, proxy.mdc, proxy.ndc, proxy.threadName,
                     proxy.location, proxy.timestamp);
             result.setEndOfBatch(proxy.isEndOfBatch);
             result.setIncludeLocation(proxy.isLocationRequired);
@@ -359,8 +359,8 @@ public class Log4jLogEvent implements Lo
          * @return Log4jLogEvent.
          */
         protected Object readResolve() {
-            Log4jLogEvent result = new Log4jLogEvent(name, marker, fqcnOfLogger, 
-                    level, message, throwable, mdc, ndc, threadName, location, 
+            Log4jLogEvent result = new Log4jLogEvent(name, marker, fqcnOfLogger,
+                    level, message, throwable, mdc, ndc, threadName, location,
                     timestamp);
             result.setEndOfBatch(isEndOfBatch);
             result.setIncludeLocation(isLocationRequired);