Skip to content

Commit 0e3d985

Browse files
committed
fixed: missing toString() in VariationLabel
1 parent 8a229af commit 0e3d985

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

src/main/java/org/variantsync/diffdetective/variation/VariationLabel.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,9 @@ public NodeType getNodeType() {
4949
public VariationLabel<L> clone() {
5050
return new VariationLabel<L>(type, Cast.unchecked(innerLabel.clone()));
5151
}
52+
53+
@Override
54+
public String toString() {
55+
return innerLabel.toString();
56+
}
5257
}

0 commit comments

Comments
 (0)