Skip to content

Commit 1db5c1f

Browse files
committed
Fixed 4.0.0 references in 3.8.0 line introduced in backports CTR
1 parent f66fa39 commit 1db5c1f

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/AnonymousTraversalSource.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public static <T extends TraversalSource> AnonymousTraversalSource<T> traversal(
6161
* reference so that traversals spawned from it will execute over that reference.
6262
*
6363
* @param configFile a path to a file that would normally be provided to configure a {@link RemoteConnection}
64-
* @deprecated As of release 4.0.0, replaced by {@link #with(String)}
64+
* @deprecated As of release 3.8.0, replaced by {@link #with(String)}
6565
*/
6666
@Deprecated
6767
public T withRemote(final String configFile) throws Exception {
@@ -73,7 +73,7 @@ public T withRemote(final String configFile) throws Exception {
7373
* reference so that traversals spawned from it will execute over that reference.
7474
*
7575
* @param conf a {@code Configuration} object that would normally be provided to configure a {@link RemoteConnection}
76-
* @deprecated As of release 4.0.0, replaced by {@link #with(Configuration)}
76+
* @deprecated As of release 3.8.0, replaced by {@link #with(Configuration)}
7777
*/
7878
@Deprecated
7979
public T withRemote(final Configuration conf) {
@@ -84,7 +84,7 @@ public T withRemote(final Configuration conf) {
8484
* Creates a {@link TraversalSource} binding a {@link RemoteConnection} to a remote {@link Graph} instances as its
8585
* reference so that traversals spawned from it will execute over that reference.
8686
*
87-
* @deprecated As of release 4.0.0, replaced by {@link #with(RemoteConnection)}
87+
* @deprecated As of release 3.8.0, replaced by {@link #with(RemoteConnection)}
8888
*/
8989
@Deprecated
9090
public T withRemote(final RemoteConnection remoteConnection) {
@@ -95,7 +95,7 @@ public T withRemote(final RemoteConnection remoteConnection) {
9595
* Creates the specified {@link TraversalSource} binding an embedded {@link Graph} as its reference such that
9696
* traversals spawned from it will execute over that reference.
9797
*
98-
* @deprecated As of release 4.0.0, replaced by {@link #with(Graph)}
98+
* @deprecated As of release 3.8.0, replaced by {@link #with(Graph)}
9999
*/
100100
@Deprecated
101101
public T withEmbedded(final Graph graph) {

gremlin-javascript/src/main/javascript/gremlin-javascript/lib/process/anonymous-traversal.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ class AnonymousTraversalSource {
7777
* reference so that traversals spawned from it will execute over that reference.
7878
* @param {RemoteConnection} remoteConnection
7979
* @return {GraphTraversalSource}
80-
* @deprecated As of release 4.0.0, prefer {@link with_}.
80+
* @deprecated As of release 3.8.0, prefer {@link with_}.
8181
*/
8282
withRemote(remoteConnection) {
8383
return this.with_(remoteConnection);

0 commit comments

Comments
 (0)