Merge branch '2.0.x'

This commit is contained in:
Phillip Webb
2018-10-15 14:22:44 -07:00
3 changed files with 3 additions and 4 deletions

View File

@@ -41,8 +41,7 @@ public interface PathMapper {
* @return an {@link PathMapper} that uses the lowercase endpoint ID as the path
*/
static PathMapper useEndpointId() {
return (id) -> id.toLowerCaseString();
return (id) -> id.toString();
}
}