This commit is contained in:
Andy Wilkinson
2018-01-15 13:35:46 +00:00
parent b2ec7c58a6
commit 23d8d608c4
7 changed files with 35 additions and 40 deletions

View File

@@ -18,7 +18,7 @@ package org.springframework.boot.web.embedded.undertow;
import java.io.File;
import io.undertow.Undertow;
import io.undertow.Undertow.Builder;
import io.undertow.servlet.api.DeploymentInfo;
/**
@@ -33,7 +33,7 @@ public interface ConfigurableUndertowWebServerFactory {
/**
* Add {@link UndertowBuilderCustomizer}s that should be used to customize the
* Undertow {@link Undertow.Builder}.
* Undertow {@link Builder}.
* @param customizers the customizers to add
*/
void addBuilderCustomizers(UndertowBuilderCustomizer... customizers);

View File

@@ -611,7 +611,7 @@ public class MapBinderTests {
@Override
public Map<String, String> convert(String s) {
Map<String, String> map = new HashMap<>();
StringUtils.commaDelimitedListToSet(s).forEach(k -> map.put(k, ""));
StringUtils.commaDelimitedListToSet(s).forEach((k) -> map.put(k, ""));
return map;
}