You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2016/08/19 11:58:43 UTC

tinkerpop git commit: Remove import statement from docs.

Repository: tinkerpop
Updated Branches:
  refs/heads/TINKERPOP-1278 7cd83bb55 -> 9e3d8a6b5


Remove import statement from docs.

That really wasn't necessary in the first place. The problems with doc generation where environmental.


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

Branch: refs/heads/TINKERPOP-1278
Commit: 9e3d8a6b55de465b5cb8983d521eb9c89f2084a3
Parents: 7cd83bb
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Fri Aug 19 07:57:58 2016 -0400
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Fri Aug 19 07:57:58 2016 -0400

----------------------------------------------------------------------
 docs/src/reference/gremlin-applications.asciidoc | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/9e3d8a6b/docs/src/reference/gremlin-applications.asciidoc
----------------------------------------------------------------------
diff --git a/docs/src/reference/gremlin-applications.asciidoc b/docs/src/reference/gremlin-applications.asciidoc
index 41a2cdc..3290a39 100644
--- a/docs/src/reference/gremlin-applications.asciidoc
+++ b/docs/src/reference/gremlin-applications.asciidoc
@@ -865,7 +865,6 @@ the `TraversalSource` be generated with `EmptyGraph` as follows:
 
 [gremlin-groovy]
 ----
-import org.apache.tinkerpop.gremlin.structure.util.empty.*
 graph = EmptyGraph.instance()
 g = graph.traversal().withRemote('conf/remote-graph.properties')
 g.V().valueMap(true)