You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by gg...@apache.org on 2014/03/27 14:58:21 UTC

svn commit: r1582309 - in /logging/log4j/log4j2/trunk/log4j-core/src/main/java/org/apache/logging/log4j/core/net: JSONLogEventInput.java XMLLogEventInput.java

Author: ggregory
Date: Thu Mar 27 13:58:21 2014
New Revision: 1582309

URL: http://svn.apache.org/r1582309
Log:
Fix typos in temp error messages.

Modified:
    logging/log4j/log4j2/trunk/log4j-core/src/main/java/org/apache/logging/log4j/core/net/JSONLogEventInput.java
    logging/log4j/log4j2/trunk/log4j-core/src/main/java/org/apache/logging/log4j/core/net/XMLLogEventInput.java

Modified: logging/log4j/log4j2/trunk/log4j-core/src/main/java/org/apache/logging/log4j/core/net/JSONLogEventInput.java
URL: http://svn.apache.org/viewvc/logging/log4j/log4j2/trunk/log4j-core/src/main/java/org/apache/logging/log4j/core/net/JSONLogEventInput.java?rev=1582309&r1=1582308&r2=1582309&view=diff
==============================================================================
--- logging/log4j/log4j2/trunk/log4j-core/src/main/java/org/apache/logging/log4j/core/net/JSONLogEventInput.java (original)
+++ logging/log4j/log4j2/trunk/log4j-core/src/main/java/org/apache/logging/log4j/core/net/JSONLogEventInput.java Thu Mar 27 13:58:21 2014
@@ -28,7 +28,7 @@ public class JSONLogEventInput extends A
 
     @Override
     public LogEvent readLogEvent(InputStream inputStream) throws IOException {
-        throw new UnsupportedOperationException("Not  implemented yet");
+        throw new UnsupportedOperationException("Not implemented yet");
     }
 
 }

Modified: logging/log4j/log4j2/trunk/log4j-core/src/main/java/org/apache/logging/log4j/core/net/XMLLogEventInput.java
URL: http://svn.apache.org/viewvc/logging/log4j/log4j2/trunk/log4j-core/src/main/java/org/apache/logging/log4j/core/net/XMLLogEventInput.java?rev=1582309&r1=1582308&r2=1582309&view=diff
==============================================================================
--- logging/log4j/log4j2/trunk/log4j-core/src/main/java/org/apache/logging/log4j/core/net/XMLLogEventInput.java (original)
+++ logging/log4j/log4j2/trunk/log4j-core/src/main/java/org/apache/logging/log4j/core/net/XMLLogEventInput.java Thu Mar 27 13:58:21 2014
@@ -28,7 +28,7 @@ public class XMLLogEventInput extends Ab
 
     @Override
     public LogEvent readLogEvent(InputStream inputStream) throws IOException {
-        throw new UnsupportedOperationException("Not  implemented yet");
+        throw new UnsupportedOperationException("Not implemented yet");
     }
 
 }