Repository: tinkerpop Updated Branches: refs/heads/TINKERPOP-1603 1c39d670a -> 8105faa1f
Removed some tokens that are no longer in use. They were part of ControlOpProcessor which was deprecated and removed a long while back. Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/6f5ae816 Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/6f5ae816 Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/6f5ae816 Branch: refs/heads/TINKERPOP-1603 Commit: 6f5ae81657a544ae571f9931c576215395a0066f Parents: 1c39d67 Author: Stephen Mallette <[email protected]> Authored: Thu Jun 29 15:11:38 2017 -0400 Committer: Stephen Mallette <[email protected]> Committed: Thu Jun 29 15:11:38 2017 -0400 ---------------------------------------------------------------------- .../apache/tinkerpop/gremlin/driver/Tokens.java | 92 -------------------- 1 file changed, 92 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/6f5ae816/gremlin-driver/src/main/java/org/apache/tinkerpop/gremlin/driver/Tokens.java ---------------------------------------------------------------------- diff --git a/gremlin-driver/src/main/java/org/apache/tinkerpop/gremlin/driver/Tokens.java b/gremlin-driver/src/main/java/org/apache/tinkerpop/gremlin/driver/Tokens.java index 9aee728..9dfc4bd 100644 --- a/gremlin-driver/src/main/java/org/apache/tinkerpop/gremlin/driver/Tokens.java +++ b/gremlin-driver/src/main/java/org/apache/tinkerpop/gremlin/driver/Tokens.java @@ -18,9 +18,6 @@ */ package org.apache.tinkerpop.gremlin.driver; -import java.util.Arrays; -import java.util.List; - /** * String constants used in gremlin-driver and gremlin-server. * @@ -37,36 +34,6 @@ public final class Tokens { public static final String OPS_KEYS = "keys"; public static final String OPS_CLOSE = "close"; - /** - * @deprecated As for release 3.2.2, not replaced as this feature was never really published as official. - */ - @Deprecated - public static final String OPS_SHOW = "show"; - - /** - * @deprecated As for release 3.2.2, not replaced as this feature was never really published as official. - */ - @Deprecated - public static final String OPS_IMPORT = "import"; - - /** - * @deprecated As for release 3.2.2, not replaced as this feature was never really published as official. - */ - @Deprecated - public static final String OPS_RESET = "reset"; - - /** - * @deprecated As for release 3.2.2, not replaced as this feature was never really published as official. - */ - @Deprecated - public static final String OPS_USE = "use"; - - /** - * @deprecated As for release 3.2.2, not replaced as this feature was never really published as official. - */ - @Deprecated - public static final String OPS_VERSION = "version"; - public static final String ARGS_BATCH_SIZE = "batchSize"; public static final String ARGS_BINDINGS = "bindings"; public static final String ARGS_ALIASES = "aliases"; @@ -89,65 +56,6 @@ public final class Tokens { @Deprecated public static final String ARGS_REBINDINGS = "rebindings"; - /** - * @deprecated As for release 3.2.2, not replaced as this feature was never really published as official. - */ - public static final String ARGS_COORDINATES = "coordinates"; - - /** - * @deprecated As for release 3.2.2, not replaced as this feature was never really published as official. - */ - @Deprecated - public static final String ARGS_COORDINATES_GROUP = "group"; - - /** - * @deprecated As for release 3.2.2, not replaced as this feature was never really published as official. - */ - @Deprecated - public static final String ARGS_COORDINATES_ARTIFACT = "artifact"; - - /** - * @deprecated As for release 3.2.2, not replaced as this feature was never really published as official. - */ - @Deprecated - public static final String ARGS_COORDINATES_VERSION = "version"; - - /** - * @deprecated As for release 3.2.2, not replaced as this feature was never really published as official. - */ - @Deprecated - public static final String ARGS_IMPORTS = "imports"; - - /** - * @deprecated As for release 3.2.2, not replaced as this feature was never really published as official. - */ - @Deprecated - public static final String ARGS_INFO_TYPE_DEPENDENCIES = "dependencies"; - - /** - * @deprecated As for release 3.2.2, not replaced as this feature was never really published as official. - */ - public static final String ARGS_INFO_TYPE = "infoType"; - - /** - * @deprecated As of release 3.1.1-incubating, replaced by {@link #ARGS_INFO_TYPE_DEPENDENCIES} - */ - @Deprecated - public static final String ARGS_INFO_TYPE_DEPDENENCIES = "dependencies"; - - /** - * @deprecated As for release 3.2.2, not replaced as this feature was never really published as official. - */ - @Deprecated - public static final String ARGS_INFO_TYPE_IMPORTS = "imports"; - - /** - * @deprecated As for release 3.2.2, not replaced as this feature was never really published as official. - */ - @Deprecated - public static final List<String> INFO_TYPES = Arrays.asList(ARGS_INFO_TYPE_DEPENDENCIES, - ARGS_INFO_TYPE_IMPORTS); - public static final String VAL_AGGREGATE_TO_BULKSET = "bulkset"; public static final String VAL_AGGREGATE_TO_LIST = "list"; public static final String VAL_AGGREGATE_TO_MAP = "map";
