Fix String concatenation in a loop

See gh-14153
pull/14268/head
Hiroaki Yoshida 6 years ago committed by Stephane Nicoll
parent 55406d91d2
commit 43acc37587

@ -317,11 +317,11 @@ public final class EndpointRequest {
public RequestMatcher antPath(RequestMatcherProvider matcherProvider, public RequestMatcher antPath(RequestMatcherProvider matcherProvider,
String... parts) { String... parts) {
String pattern = this.prefix; StringBuffer pattern = new StringBuffer(this.prefix);
for (String part : parts) { for (String part : parts) {
pattern += part; pattern.append(part);
} }
return matcherProvider.getRequestMatcher(pattern); return matcherProvider.getRequestMatcher(pattern.toString());
} }
} }

Loading…
Cancel
Save