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 2015/11/30 17:11:37 UTC

[3/7] incubator-tinkerpop git commit: Correct grammar in exception message.

Correct grammar in exception message.


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

Branch: refs/heads/master
Commit: fe0e6654a098419ade421bf686db52a74fd2a72b
Parents: 12e1250
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Thu Nov 26 11:17:59 2015 -0500
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Thu Nov 26 11:17:59 2015 -0500

----------------------------------------------------------------------
 .../main/java/org/apache/tinkerpop/gremlin/driver/Client.java    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/fe0e6654/gremlin-driver/src/main/java/org/apache/tinkerpop/gremlin/driver/Client.java
----------------------------------------------------------------------
diff --git a/gremlin-driver/src/main/java/org/apache/tinkerpop/gremlin/driver/Client.java b/gremlin-driver/src/main/java/org/apache/tinkerpop/gremlin/driver/Client.java
index d8a6eca..8c80b8a 100644
--- a/gremlin-driver/src/main/java/org/apache/tinkerpop/gremlin/driver/Client.java
+++ b/gremlin-driver/src/main/java/org/apache/tinkerpop/gremlin/driver/Client.java
@@ -511,7 +511,7 @@ public abstract class Client {
         @Deprecated
         @Override
         public Client rebind(final String graphOrTraversalSourceName){
-            throw new UnsupportedOperationException("Sessioned client do no support aliasing");
+            throw new UnsupportedOperationException("Sessioned client does not support aliasing");
         }
 
         /**
@@ -521,7 +521,7 @@ public abstract class Client {
          */
         @Override
         public Client alias(String graphOrTraversalSource) {
-            throw new UnsupportedOperationException("Sessioned client do no support aliasing");
+            throw new UnsupportedOperationException("Sessioned client does not support aliasing");
         }
 
         /**