got rid of unneeded EMPTY_STRING static final field.
Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/291532c4 Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/291532c4 Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/291532c4 Branch: refs/heads/tp32 Commit: 291532c476293b88a9f04b8876b3876ad084abc2 Parents: acbc18d Author: Marko A. Rodriguez <[email protected]> Authored: Thu Sep 21 13:36:46 2017 -0600 Committer: Marko A. Rodriguez <[email protected]> Committed: Thu Sep 21 13:36:46 2017 -0600 ---------------------------------------------------------------------- .../gremlin/structure/util/reference/ReferenceElement.java | 2 -- 1 file changed, 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/291532c4/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/util/reference/ReferenceElement.java ---------------------------------------------------------------------- diff --git a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/util/reference/ReferenceElement.java b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/util/reference/ReferenceElement.java index 1603cfb..2e45903 100644 --- a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/util/reference/ReferenceElement.java +++ b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/util/reference/ReferenceElement.java @@ -34,8 +34,6 @@ import java.io.Serializable; */ public abstract class ReferenceElement<E extends Element> implements Element, Serializable, Attachable<E> { - private final static String EMPTY_STRING = ""; - protected Object id; protected String label;
