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/06/08 19:42:58 UTC

incubator-tinkerpop git commit: Neo4j WARN message cleaner.

Repository: incubator-tinkerpop
Updated Branches:
  refs/heads/master 3be49881d -> 27e492013


Neo4j WARN message cleaner.


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

Branch: refs/heads/master
Commit: 27e492013286879640cfbb10929a579dda699d88
Parents: 3be4988
Author: Marko A. Rodriguez <ok...@gmail.com>
Authored: Mon Jun 8 11:42:53 2015 -0600
Committer: Marko A. Rodriguez <ok...@gmail.com>
Committed: Mon Jun 8 11:42:53 2015 -0600

----------------------------------------------------------------------
 .../org/apache/tinkerpop/gremlin/neo4j/structure/Neo4jGraph.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/27e49201/neo4j-gremlin/src/main/java/org/apache/tinkerpop/gremlin/neo4j/structure/Neo4jGraph.java
----------------------------------------------------------------------
diff --git a/neo4j-gremlin/src/main/java/org/apache/tinkerpop/gremlin/neo4j/structure/Neo4jGraph.java b/neo4j-gremlin/src/main/java/org/apache/tinkerpop/gremlin/neo4j/structure/Neo4jGraph.java
index e7b23f8..4c1b87b 100644
--- a/neo4j-gremlin/src/main/java/org/apache/tinkerpop/gremlin/neo4j/structure/Neo4jGraph.java
+++ b/neo4j-gremlin/src/main/java/org/apache/tinkerpop/gremlin/neo4j/structure/Neo4jGraph.java
@@ -119,7 +119,7 @@ public final class Neo4jGraph implements Graph, WrappedGraph<Neo4jGraphAPI> {
             this.neo4jGraphVariables.set(Graph.Hidden.hide(CONFIG_META_PROPERTIES), supportsMetaProperties);
         this.trait = supportsMultiProperties ? MultiMetaNeo4jTrait.instance() : NoMultiNoMetaNeo4jTrait.instance();
         if (supportsMultiProperties)
-            LOGGER.warn(this.getClass().getSimpleName() + "'s multi/meta-properties feature is considered experimental and should not be used in a production setting until this warning is removed");
+            LOGGER.warn(this.getClass().getSimpleName() + " multi/meta-properties feature is considered experimental and should not be used in a production setting until this warning is removed");
         this.tx().commit();
     }