You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@giraph.apache.org by di...@apache.org on 2018/05/03 02:42:48 UTC

git commit: updated refs/heads/trunk to 345f3db

Repository: giraph
Updated Branches:
  refs/heads/trunk 94d60e2f8 -> 345f3db49


GIRAPH-1192

closes #45


Project: http://git-wip-us.apache.org/repos/asf/giraph/repo
Commit: http://git-wip-us.apache.org/repos/asf/giraph/commit/345f3db4
Tree: http://git-wip-us.apache.org/repos/asf/giraph/tree/345f3db4
Diff: http://git-wip-us.apache.org/repos/asf/giraph/diff/345f3db4

Branch: refs/heads/trunk
Commit: 345f3db49a7f4e662d117fb778bc66b49de14dae
Parents: 94d60e2
Author: Bruno P. Kinoshita <kinow>
Authored: Wed May 2 19:42:00 2018 -0700
Committer: Dionysios Logothetis <di...@fb.com>
Committed: Wed May 2 19:42:00 2018 -0700

----------------------------------------------------------------------
 .../main/java/org/apache/giraph/writable/kryo/HadoopKryo.java  | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/giraph/blob/345f3db4/giraph-core/src/main/java/org/apache/giraph/writable/kryo/HadoopKryo.java
----------------------------------------------------------------------
diff --git a/giraph-core/src/main/java/org/apache/giraph/writable/kryo/HadoopKryo.java b/giraph-core/src/main/java/org/apache/giraph/writable/kryo/HadoopKryo.java
index b110101..fb1186b 100644
--- a/giraph-core/src/main/java/org/apache/giraph/writable/kryo/HadoopKryo.java
+++ b/giraph-core/src/main/java/org/apache/giraph/writable/kryo/HadoopKryo.java
@@ -108,7 +108,7 @@ public class HadoopKryo extends Kryo {
         "it is marked to not allow serialization, " +
         "look at the class for more details");
     NON_SERIALIZABLE.put(
-        KryoWritableWrapper.class, "recursion is dissallowed");
+        KryoWritableWrapper.class, "recursion is disallowed");
     NON_SERIALIZABLE.put(
         Configuration.class,
         "it cannot be supported since it contains ClassLoader");
@@ -172,7 +172,7 @@ public class HadoopKryo extends Kryo {
 
   /**
    * Read object from the input stream, by reading first type of the object,
-   * and then all of it's fields.
+   * and then all of its fields.
    * Inverse of writeClassAndObject.
    *
    * @param in Input stream
@@ -264,7 +264,7 @@ public class HadoopKryo extends Kryo {
 
   /**
    * Create copy of the object, by magically recursively copying
-   * all of it's fields, keeping reference structures (like cycles)
+   * all of its fields, keeping reference structures (like cycles)
    *
    * @param object Object to be copied
    * @return Copy of the object.