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/12/12 12:45:08 UTC

[20/47] tinkerpop git commit: TINKERPOP-1562 Deprecated TinkerGraphGremlinPlugin.

TINKERPOP-1562 Deprecated TinkerGraphGremlinPlugin.


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

Branch: refs/heads/master
Commit: f5a1ebb54f698b4957435e05297befcc2ab97ef9
Parents: a4fa9da
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Tue Nov 22 09:42:12 2016 -0500
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Fri Dec 2 06:28:51 2016 -0500

----------------------------------------------------------------------
 .../tinkergraph/groovy/plugin/TinkerGraphGremlinPlugin.java       | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/f5a1ebb5/tinkergraph-gremlin/src/main/java/org/apache/tinkerpop/gremlin/tinkergraph/groovy/plugin/TinkerGraphGremlinPlugin.java
----------------------------------------------------------------------
diff --git a/tinkergraph-gremlin/src/main/java/org/apache/tinkerpop/gremlin/tinkergraph/groovy/plugin/TinkerGraphGremlinPlugin.java b/tinkergraph-gremlin/src/main/java/org/apache/tinkerpop/gremlin/tinkergraph/groovy/plugin/TinkerGraphGremlinPlugin.java
index df35314..5c8231a 100644
--- a/tinkergraph-gremlin/src/main/java/org/apache/tinkerpop/gremlin/tinkergraph/groovy/plugin/TinkerGraphGremlinPlugin.java
+++ b/tinkergraph-gremlin/src/main/java/org/apache/tinkerpop/gremlin/tinkergraph/groovy/plugin/TinkerGraphGremlinPlugin.java
@@ -30,10 +30,11 @@ import java.util.Set;
 
 /**
  * @author Stephen Mallette (http://stephen.genoprime.com)
+ * @deprecated As of release 3.2.4, replaced by {@link org.apache.tinkerpop.gremlin.tinkergraph.jsr223.TinkerGraphGremlinPlugin}.
  */
+@Deprecated
 public final class TinkerGraphGremlinPlugin extends AbstractGremlinPlugin {
 
-
     private static final Set<String> IMPORTS = new HashSet<String>() {{
         add(IMPORT_SPACE + TinkerGraph.class.getPackage().getName() + DOT_STAR);
         add(IMPORT_SPACE + TinkerGraphComputer.class.getPackage().getName() + DOT_STAR);