Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 797C7200C04 for ; Tue, 24 Jan 2017 21:16:26 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 764F7160B67; Tue, 24 Jan 2017 20:16:26 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id C5135160B38 for ; Tue, 24 Jan 2017 21:16:25 +0100 (CET) Received: (qmail 7626 invoked by uid 500); 24 Jan 2017 20:16:24 -0000 Mailing-List: contact commits-help@tinkerpop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@tinkerpop.apache.org Delivered-To: mailing list commits@tinkerpop.apache.org Received: (qmail 7616 invoked by uid 99); 24 Jan 2017 20:16:24 -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; Tue, 24 Jan 2017 20:16:24 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 68795DFA6D; Tue, 24 Jan 2017 20:16:24 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: spmallette@apache.org To: commits@tinkerpop.apache.org Date: Tue, 24 Jan 2017 20:16:24 -0000 Message-Id: <4d3aed93b5c246ee8fbc32b27f9fa50f@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [01/38] tinkerpop git commit: minor nothing tweak. [Forced Update!] archived-at: Tue, 24 Jan 2017 20:16:26 -0000 Repository: tinkerpop Updated Branches: refs/heads/TINKERPOP-1612 6fef1a45d -> e2d1eedcc (forced update) minor nothing tweak. Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/bb97c942 Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/bb97c942 Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/bb97c942 Branch: refs/heads/TINKERPOP-1612 Commit: bb97c9420840fbc7cfe1493c3a7abfa1b86b46e6 Parents: 5809700 Author: Marko A. Rodriguez Authored: Wed Nov 30 07:55:45 2016 -0700 Committer: Stephen Mallette Committed: Thu Jan 19 15:15:32 2017 -0500 ---------------------------------------------------------------------- .../structure/util/reference/ReferenceVertexProperty.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/bb97c942/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/util/reference/ReferenceVertexProperty.java ---------------------------------------------------------------------- diff --git a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/util/reference/ReferenceVertexProperty.java b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/util/reference/ReferenceVertexProperty.java index 93b4c48..472a63b 100644 --- a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/util/reference/ReferenceVertexProperty.java +++ b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/util/reference/ReferenceVertexProperty.java @@ -34,7 +34,7 @@ import java.util.NoSuchElementException; public class ReferenceVertexProperty extends ReferenceElement> implements VertexProperty { private ReferenceVertex vertex; - private String key; + private String label; private V value; private ReferenceVertexProperty() { @@ -43,8 +43,8 @@ public class ReferenceVertexProperty extends ReferenceElement vertexProperty) { super(vertexProperty); - this.vertex = ReferenceFactory.detach(vertexProperty.element()); - this.key = vertexProperty.key(); + this.vertex = new ReferenceVertex(vertexProperty.element()); + this.label = vertexProperty.key(); this.value = vertexProperty.value(); } @@ -55,12 +55,12 @@ public class ReferenceVertexProperty extends ReferenceElement