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 2015/06/09 16:32:51 UTC

incubator-tinkerpop git commit: fixed a pointless call in the Neo4j docs.

Repository: incubator-tinkerpop
Updated Branches:
  refs/heads/master 3fa95a638 -> f01f3c2da


fixed a pointless call in the Neo4j docs.


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

Branch: refs/heads/master
Commit: f01f3c2dabd8db7f73bc9d647af660854073edfb
Parents: 3fa95a6
Author: Marko A. Rodriguez <ok...@gmail.com>
Authored: Tue Jun 9 08:32:46 2015 -0600
Committer: Marko A. Rodriguez <ok...@gmail.com>
Committed: Tue Jun 9 08:32:46 2015 -0600

----------------------------------------------------------------------
 docs/src/implementations.asciidoc | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/f01f3c2d/docs/src/implementations.asciidoc
----------------------------------------------------------------------
diff --git a/docs/src/implementations.asciidoc b/docs/src/implementations.asciidoc
index 2d2f18a..13ffba4 100644
--- a/docs/src/implementations.asciidoc
+++ b/docs/src/implementations.asciidoc
@@ -623,9 +623,8 @@ conf.setProperty('gremlin.neo4j.multiProperties',true)
 conf.setProperty('gremlin.neo4j.metaProperties',true)
 graph = Neo4jGraph.open(conf)
 g = graph.traversal()
-random = new Random()
 g.addV('name','michael','name','michael hunger','name','mhunger')
-g.V().properties('name').property('acl', random.nextBoolean() ? 'private' : 'public')
+g.V().properties('name').property('acl', 'public')
 g.V(0).valueMap()
 g.V(0).properties()
 g.V(0).properties().valueMap()