Return-Path: X-Original-To: apmail-tinkerpop-commits-archive@minotaur.apache.org Delivered-To: apmail-tinkerpop-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id DAAEB18DEB for ; Thu, 3 Dec 2015 16:43:35 +0000 (UTC) Received: (qmail 74480 invoked by uid 500); 3 Dec 2015 16:43:13 -0000 Delivered-To: apmail-tinkerpop-commits-archive@tinkerpop.apache.org Received: (qmail 74453 invoked by uid 500); 3 Dec 2015 16:43:13 -0000 Mailing-List: contact commits-help@tinkerpop.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@tinkerpop.incubator.apache.org Delivered-To: mailing list commits@tinkerpop.incubator.apache.org Received: (qmail 74442 invoked by uid 99); 3 Dec 2015 16:43:13 -0000 Received: from Unknown (HELO spamd4-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 03 Dec 2015 16:43:13 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd4-us-west.apache.org (ASF Mail Server at spamd4-us-west.apache.org) with ESMTP id 13FCEC05AC for ; Thu, 3 Dec 2015 16:43:13 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd4-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 1.227 X-Spam-Level: * X-Spam-Status: No, score=1.227 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-0.554, URIBL_BLOCKED=0.001] autolearn=disabled Received: from mx1-eu-west.apache.org ([10.40.0.8]) by localhost (spamd4-us-west.apache.org [10.40.0.11]) (amavisd-new, port 10024) with ESMTP id oaivSQ-QDkiz for ; Thu, 3 Dec 2015 16:43:01 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-eu-west.apache.org (ASF Mail Server at mx1-eu-west.apache.org) with SMTP id A5C8B25E93 for ; Thu, 3 Dec 2015 16:42:58 +0000 (UTC) Received: (qmail 70849 invoked by uid 99); 3 Dec 2015 16:42:57 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 03 Dec 2015 16:42:57 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 71C95E6809; Thu, 3 Dec 2015 16:42:57 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: okram@apache.org To: commits@tinkerpop.incubator.apache.org Date: Thu, 03 Dec 2015 16:43:07 -0000 Message-Id: <6e59b96cd1a54421ac00ae4981c6445b@git.apache.org> In-Reply-To: <7ddfc1cac2064448b504bfb82908f6f4@git.apache.org> References: <7ddfc1cac2064448b504bfb82908f6f4@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [11/50] 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/TINKERPOP3-982 Commit: fe0e6654a098419ade421bf686db52a74fd2a72b Parents: 12e1250 Author: Stephen Mallette Authored: Thu Nov 26 11:17:59 2015 -0500 Committer: Stephen Mallette 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"); } /**