Merge pull request #14153 from hiroakiy:fix-string-concat
* pr/14153: Polish "Fix String concatenation in a loop" Fix String concatenation in a loop
This commit is contained in:
commit
7c3d863cf7
|
|
@ -317,11 +317,11 @@ public final class EndpointRequest {
|
|||
|
||||
public RequestMatcher antPath(RequestMatcherProvider matcherProvider,
|
||||
String... parts) {
|
||||
String pattern = this.prefix;
|
||||
StringBuilder pattern = new StringBuilder(this.prefix);
|
||||
for (String part : parts) {
|
||||
pattern += part;
|
||||
pattern.append(part);
|
||||
}
|
||||
return matcherProvider.getRequestMatcher(pattern);
|
||||
return matcherProvider.getRequestMatcher(pattern.toString());
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue