Skip to content

Commit 0eb53a1

Browse files
committed
* VStructure (appendFeatureValue): Use lookingAt() instead of matches().
1 parent cb21446 commit 0eb53a1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

org.omg.sysml.plantuml/src/org/omg/sysml/plantuml/VStructure.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ protected boolean appendFeatureValue(FeatureValue fv) {
128128
} else {
129129
append(' '); // appendText() trims the text.
130130
Matcher m = patEqFeatureValue.matcher(text);
131-
if (!m.matches()) {
131+
if (!m.lookingAt()) {
132132
text = "= " + text;
133133
}
134134
}

0 commit comments

Comments
 (0)