You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@samza.apache.org by ya...@apache.org on 2015/02/20 20:44:08 UTC

samza git commit: SAMZA-574: fix javadoc syntax error in samza-log4j

Repository: samza
Updated Branches:
  refs/heads/master 11082d344 -> 77359feb8


SAMZA-574: fix javadoc syntax error in samza-log4j


Project: http://git-wip-us.apache.org/repos/asf/samza/repo
Commit: http://git-wip-us.apache.org/repos/asf/samza/commit/77359feb
Tree: http://git-wip-us.apache.org/repos/asf/samza/tree/77359feb
Diff: http://git-wip-us.apache.org/repos/asf/samza/diff/77359feb

Branch: refs/heads/master
Commit: 77359feb83beec7c7ca66f9f1553565e3c826983
Parents: 11082d3
Author: Yan Fang <ya...@gmail.com>
Authored: Fri Feb 20 11:43:46 2015 -0800
Committer: Yan Fang <ya...@gmail.com>
Committed: Fri Feb 20 11:43:46 2015 -0800

----------------------------------------------------------------------
 .../samza/logging/log4j/serializers/LoggingEventStringSerde.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/samza/blob/77359feb/samza-log4j/src/main/java/org/apache/samza/logging/log4j/serializers/LoggingEventStringSerde.java
----------------------------------------------------------------------
diff --git a/samza-log4j/src/main/java/org/apache/samza/logging/log4j/serializers/LoggingEventStringSerde.java b/samza-log4j/src/main/java/org/apache/samza/logging/log4j/serializers/LoggingEventStringSerde.java
index f9a0960..8d8f5e8 100644
--- a/samza-log4j/src/main/java/org/apache/samza/logging/log4j/serializers/LoggingEventStringSerde.java
+++ b/samza-log4j/src/main/java/org/apache/samza/logging/log4j/serializers/LoggingEventStringSerde.java
@@ -28,7 +28,7 @@ import org.apache.samza.serializers.Serde;
 
 /**
  * A serializer for LoggingEvent. It provides two methods. {@link #toBytes(LoggingEvent object)} serializes
- * the {@link @LoggingEvent}'s messages into bytes. {@link #fromBytes(byte[] bytes)} will creates a new
+ * the {@link org.apache.log4j.spi.LoggingEvent}'s messages into bytes. {@link #fromBytes(byte[] bytes)} will creates a new
  * LoggingEvent based on the messages, which is deserialized from the bytes.
  */
 public class LoggingEventStringSerde implements Serde<LoggingEvent> {
@@ -49,7 +49,7 @@ public class LoggingEventStringSerde implements Serde<LoggingEvent> {
   }
 
   /**
-   * Convert bytes to a {@link LoggingEvent}. This LoggingEvent uses logging
+   * Convert bytes to a {@link org.apache.log4j.spi.LoggingEvent}. This LoggingEvent uses logging
    * information of the {@link LoggingEventStringSerde}, which includes log
    * name, log category and log level.
    *