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/08/09 00:05:08 UTC

tinkerpop git commit: Bytecode.Binding is now Serializable.

Repository: tinkerpop
Updated Branches:
  refs/heads/TINKERPOP-1278 3c6f16fbb -> b4c2686a1


Bytecode.Binding is now Serializable.


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

Branch: refs/heads/TINKERPOP-1278
Commit: b4c2686a10990365ee60cc729b7ff9fcc359d985
Parents: 3c6f16f
Author: Marko A. Rodriguez <ok...@gmail.com>
Authored: Mon Aug 8 18:05:04 2016 -0600
Committer: Marko A. Rodriguez <ok...@gmail.com>
Committed: Mon Aug 8 18:05:04 2016 -0600

----------------------------------------------------------------------
 .../org/apache/tinkerpop/gremlin/process/traversal/Bytecode.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/b4c2686a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/Bytecode.java
----------------------------------------------------------------------
diff --git a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/Bytecode.java b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/Bytecode.java
index 9c5ef76..f943afc 100644
--- a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/Bytecode.java
+++ b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/Bytecode.java
@@ -162,7 +162,7 @@ public final class Bytecode implements Cloneable, Serializable {
 
     }
 
-    public static class Binding<V> {
+    public static class Binding<V> implements Serializable {
 
         private final String variable;
         private final V value;