Commit cb125146 authored by Stephane Nicoll's avatar Stephane Nicoll

Merge pull request #12452 from igor-suhorukov

* pr/12452:
  "toString()" should never be called on a String object
parents e561db40 12185251
......@@ -168,7 +168,7 @@ public class DispatcherServletsMappingDescriptionProvider
private DispatcherServletMappingDescription describe(
Entry<String, Object> mapping) {
return new DispatcherServletMappingDescription(mapping.getKey().toString(),
return new DispatcherServletMappingDescription(mapping.getKey(),
mapping.getValue().toString(), null);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment