-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Closed
Labels
bugUnexpected or incorrect behaviorUnexpected or incorrect behaviorgood first issueIssues that are good for first time contributors to tackleIssues that are good for first time contributors to tackle
Description
Expressions.PathStyleExpression#getValue:
@Override
public String getValue() {
if (this.getPattern() != null) {
// this line
return "{" + this.separator + this.getName() + ":" + this.getName() + "}";
}
return "{" + this.separator + this.getName() + "}";
}
Maybe the intentions is:
return "{" + this.separator + this.getName() + ":" + this.getPattern() + "}";
?
Metadata
Metadata
Assignees
Labels
bugUnexpected or incorrect behaviorUnexpected or incorrect behaviorgood first issueIssues that are good for first time contributors to tackleIssues that are good for first time contributors to tackle