Skip to content
Snippets Groups Projects
Commit 68211e79 authored by Sören Henning's avatar Sören Henning
Browse files

fix const

parent 998b6475
No related branches found
No related tags found
1 merge request!17Get impletemented stages and Java 8
...@@ -25,7 +25,7 @@ public class NestedGraph<T extends Graph> implements Graph, WrapperGraph<T> { ...@@ -25,7 +25,7 @@ public class NestedGraph<T extends Graph> implements Graph, WrapperGraph<T> {
private final Set<NestedGraphPartition> partitions = new HashSet<>(); private final Set<NestedGraphPartition> partitions = new HashSet<>();
public NestedGraph(final T baseGraph) { 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 = this.baseGraph.getFeatures().copyFeatures();
this.features.isWrapper = true; this.features.isWrapper = true;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment