From f89c0b0fa057aaf50baeeb1849b059816b5dd56d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Henning?= <stu114708@informatik.uni-kiel.de> Date: Thu, 25 Feb 2016 09:07:31 +0100 Subject: [PATCH] move default label to constant --- src/main/java/kieker/analysis/graph/BlueprintsExporter.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/java/kieker/analysis/graph/BlueprintsExporter.java b/src/main/java/kieker/analysis/graph/BlueprintsExporter.java index 6d630172..76298500 100644 --- a/src/main/java/kieker/analysis/graph/BlueprintsExporter.java +++ b/src/main/java/kieker/analysis/graph/BlueprintsExporter.java @@ -11,6 +11,8 @@ public class BlueprintsExporter { private final com.tinkerpop.blueprints.Graph exportGraph = new TinkerGraph(); private final Map<Vertex, com.tinkerpop.blueprints.Vertex> mappedVertices = new HashMap<>(); + private static final String LABEL_PROPERTY = "label"; + public BlueprintsExporter(final Graph graph) { this.graph = graph; } @@ -41,7 +43,7 @@ public class BlueprintsExporter { for (final Edge edge : graph.getEdges()) { final com.tinkerpop.blueprints.Vertex mappedInVertex = mappedVertices.get(edge.getVertex(Direction.IN)); final com.tinkerpop.blueprints.Vertex mappedOutVertex = mappedVertices.get(edge.getVertex(Direction.OUT)); - String label = edge.getProperty("label"); + String label = edge.getProperty(LABEL_PROPERTY); if (label == null) { label = ""; } -- GitLab