Polish
This commit is contained in:
@@ -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);
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user