You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by ok...@apache.org on 2016/02/29 18:54:12 UTC

[2/2] incubator-tinkerpop git commit: minor nothings. running full integration tests on this branch and then will VOTE it out.

minor nothings. running full integration tests on this branch and then will VOTE it out.


Project: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/commit/fb349865
Tree: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/tree/fb349865
Diff: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/diff/fb349865

Branch: refs/heads/TINKERPOP-1166
Commit: fb349865da343f7a0f0b80a4f5faaa5b16d8bc8a
Parents: 7d38cee
Author: Marko A. Rodriguez <ok...@gmail.com>
Authored: Mon Feb 29 10:53:51 2016 -0700
Committer: Marko A. Rodriguez <ok...@gmail.com>
Committed: Mon Feb 29 10:53:51 2016 -0700

----------------------------------------------------------------------
 .../gremlin/giraph/process/computer/PassthroughMemory.java        | 3 +--
 .../apache/tinkerpop/gremlin/process/computer/util/MapMemory.java | 2 +-
 2 files changed, 2 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/fb349865/giraph-gremlin/src/main/java/org/apache/tinkerpop/gremlin/giraph/process/computer/PassthroughMemory.java
----------------------------------------------------------------------
diff --git a/giraph-gremlin/src/main/java/org/apache/tinkerpop/gremlin/giraph/process/computer/PassthroughMemory.java b/giraph-gremlin/src/main/java/org/apache/tinkerpop/gremlin/giraph/process/computer/PassthroughMemory.java
index 998110f..dc40e7b 100644
--- a/giraph-gremlin/src/main/java/org/apache/tinkerpop/gremlin/giraph/process/computer/PassthroughMemory.java
+++ b/giraph-gremlin/src/main/java/org/apache/tinkerpop/gremlin/giraph/process/computer/PassthroughMemory.java
@@ -22,7 +22,6 @@ package org.apache.tinkerpop.gremlin.giraph.process.computer;
 import org.apache.tinkerpop.gremlin.process.computer.Memory;
 import org.apache.tinkerpop.gremlin.structure.util.StringFactory;
 
-import java.io.Serializable;
 import java.util.HashMap;
 import java.util.Map;
 import java.util.Set;
@@ -30,7 +29,7 @@ import java.util.Set;
 /**
  * @author Marko A. Rodriguez (http://markorodriguez.com)
  */
-public final class PassThroughMemory implements Memory.Admin, Serializable {
+public final class PassThroughMemory implements Memory.Admin {
 
     private final GiraphMemory giraphMemory;
     private long runtime = 0l;

http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/fb349865/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/computer/util/MapMemory.java
----------------------------------------------------------------------
diff --git a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/computer/util/MapMemory.java b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/computer/util/MapMemory.java
index e8edbc1..74e1fc1 100644
--- a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/computer/util/MapMemory.java
+++ b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/computer/util/MapMemory.java
@@ -74,7 +74,7 @@ public final class MapMemory implements Memory.Admin, Serializable {
 
     @Override
     public void set(final String key, Object value) {
-        this.checkKeyValue(key, value);
+        // this.checkKeyValue(key, value);
         this.memoryMap.put(key, value);
     }