Polish contribution

Closes gh-13208
This commit is contained in:
Stephane Nicoll
2018-05-18 14:20:31 +02:00
parent d31dbac69e
commit 300f6bf4d7
3 changed files with 27 additions and 4 deletions

View File

@@ -70,11 +70,11 @@ public class LocalHostUriTemplateHandler extends RootUriTemplateHandler {
* @param handler the delegate handler
* @since 2.0.3
*/
public LocalHostUriTemplateHandler(Environment environment, String scheme, UriTemplateHandler handler) {
public LocalHostUriTemplateHandler(Environment environment, String scheme,
UriTemplateHandler handler) {
super(handler);
Assert.notNull(environment, "Environment must not be null");
Assert.notNull(scheme, "Scheme must not be null");
Assert.notNull(handler, "Handler must not be null");
this.environment = environment;
this.scheme = scheme;
}