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 2015/09/10 18:30:16 UTC

logging-log4j2 git commit: Fixed compiler warning

Repository: logging-log4j2
Updated Branches:
  refs/heads/master 5ea3fc97f -> 7be349430


Fixed compiler warning

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

Branch: refs/heads/master
Commit: 7be34943065182713546670ba8ef013943553cda
Parents: 5ea3fc9
Author: rpopma <rp...@apache.org>
Authored: Fri Sep 11 01:30:11 2015 +0900
Committer: rpopma <rp...@apache.org>
Committed: Fri Sep 11 01:30:11 2015 +0900

----------------------------------------------------------------------
 .../apache/logging/log4j/core/util/datetime/FastDateFormat.java   | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/7be34943/log4j-core/src/main/java/org/apache/logging/log4j/core/util/datetime/FastDateFormat.java
----------------------------------------------------------------------
diff --git a/log4j-core/src/main/java/org/apache/logging/log4j/core/util/datetime/FastDateFormat.java b/log4j-core/src/main/java/org/apache/logging/log4j/core/util/datetime/FastDateFormat.java
index 888014f..79a07d0 100644
--- a/log4j-core/src/main/java/org/apache/logging/log4j/core/util/datetime/FastDateFormat.java
+++ b/log4j-core/src/main/java/org/apache/logging/log4j/core/util/datetime/FastDateFormat.java
@@ -16,6 +16,7 @@
  */
 package org.apache.logging.log4j.core.util.datetime;
 
+import java.io.Serializable;
 import java.text.DateFormat;
 import java.text.FieldPosition;
 import java.text.ParseException;
@@ -28,7 +29,7 @@ import java.util.TimeZone;
 /**
  * This is a copy of Commons Lang's Fast Date Formatter.
  */
-public class FastDateFormat extends Format implements DatePrinter, DateParser {
+public class FastDateFormat extends Format implements DatePrinter, DateParser, Serializable {
     /**
      * Required for serialization support.
      *