From 68211e79240bd6792a925e96dfafe51238bd3c33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Henning?= <stu114708@informatik.uni-kiel.de> Date: Mon, 11 Jan 2016 17:31:03 +0100 Subject: [PATCH] fix const --- src/main/java/kieker/analysis/dev/nestedgraph/NestedGraph.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/kieker/analysis/dev/nestedgraph/NestedGraph.java b/src/main/java/kieker/analysis/dev/nestedgraph/NestedGraph.java index 1b622107..1005fc52 100644 --- a/src/main/java/kieker/analysis/dev/nestedgraph/NestedGraph.java +++ b/src/main/java/kieker/analysis/dev/nestedgraph/NestedGraph.java @@ -25,7 +25,7 @@ public class NestedGraph<T extends Graph> implements Graph, WrapperGraph<T> { private final Set<NestedGraphPartition> partitions = new HashSet<>(); public NestedGraph(final T baseGraph) { - this.baseGraph = new PartitionGraph<>(baseGraph, PARTITION_KEY, ""); + this.baseGraph = new PartitionGraph<>(baseGraph, PARTITION_KEY, DEFAULT_PARTITION); this.features = this.baseGraph.getFeatures().copyFeatures(); this.features.isWrapper = true; } -- GitLab