You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by ok...@apache.org on 2015/04/15 21:56:20 UTC

incubator-tinkerpop git commit: a trivial formating fix to an Exception message.

Repository: incubator-tinkerpop
Updated Branches:
  refs/heads/master d09ffa895 -> f366285c2


a trivial formating fix to an 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/f366285c
Tree: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/tree/f366285c
Diff: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/diff/f366285c

Branch: refs/heads/master
Commit: f366285c2ce032ea19528c1bb6e4b96bc5661a4c
Parents: d09ffa8
Author: Marko A. Rodriguez <ok...@gmail.com>
Authored: Wed Apr 15 13:56:46 2015 -0600
Committer: Marko A. Rodriguez <ok...@gmail.com>
Committed: Wed Apr 15 13:56:46 2015 -0600

----------------------------------------------------------------------
 .../java/org/apache/tinkerpop/gremlin/process/traversal/Path.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/f366285c/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/Path.java
----------------------------------------------------------------------
diff --git a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/Path.java b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/Path.java
index 8fce9d0..3d54cd2 100644
--- a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/Path.java
+++ b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/Path.java
@@ -174,7 +174,7 @@ public interface Path extends Cloneable {
     public static class Exceptions {
 
         public static IllegalArgumentException stepWithProvidedLabelDoesNotExist(final String label) {
-            return new IllegalArgumentException("The step with label " + label + "  does not exist");
+            return new IllegalArgumentException("The step with label " + label + " does not exist");
         }
     }
 }