Commit cb0e3c79 authored by Johnny Lim's avatar Johnny Lim Committed by Stephane Nicoll

Polish

Closes gh-16688
parent ed538a2e
...@@ -314,7 +314,7 @@ public class ReactiveWebServerFactoryAutoConfigurationTests { ...@@ -314,7 +314,7 @@ public class ReactiveWebServerFactoryAutoConfigurationTests {
static class JettyServerCustomizerConfiguration { static class JettyServerCustomizerConfiguration {
@Bean @Bean
public JettyServerCustomizer protocolHandlerCustomizer() { public JettyServerCustomizer serverCustomizer() {
return (server) -> { return (server) -> {
}; };
...@@ -326,7 +326,7 @@ public class ReactiveWebServerFactoryAutoConfigurationTests { ...@@ -326,7 +326,7 @@ public class ReactiveWebServerFactoryAutoConfigurationTests {
static class UndertowBuilderCustomizerConfiguration { static class UndertowBuilderCustomizerConfiguration {
@Bean @Bean
public UndertowBuilderCustomizer protocolHandlerCustomizer() { public UndertowBuilderCustomizer builderCustomizer() {
return (builder) -> { return (builder) -> {
}; };
...@@ -338,7 +338,7 @@ public class ReactiveWebServerFactoryAutoConfigurationTests { ...@@ -338,7 +338,7 @@ public class ReactiveWebServerFactoryAutoConfigurationTests {
static class UndertowDeploymentInfoCustomizerConfiguration { static class UndertowDeploymentInfoCustomizerConfiguration {
@Bean @Bean
public UndertowDeploymentInfoCustomizer protocolHandlerCustomizer() { public UndertowDeploymentInfoCustomizer deploymentInfoCustomizer() {
return (deploymentInfo) -> { return (deploymentInfo) -> {
}; };
......
...@@ -428,7 +428,7 @@ public class ServletWebServerFactoryAutoConfigurationTests { ...@@ -428,7 +428,7 @@ public class ServletWebServerFactoryAutoConfigurationTests {
static class JettyServerCustomizerConfiguration { static class JettyServerCustomizerConfiguration {
@Bean @Bean
public JettyServerCustomizer protocolHandlerCustomizer() { public JettyServerCustomizer serverCustomizer() {
return (server) -> { return (server) -> {
}; };
...@@ -440,7 +440,7 @@ public class ServletWebServerFactoryAutoConfigurationTests { ...@@ -440,7 +440,7 @@ public class ServletWebServerFactoryAutoConfigurationTests {
static class UndertowBuilderCustomizerConfiguration { static class UndertowBuilderCustomizerConfiguration {
@Bean @Bean
public UndertowBuilderCustomizer protocolHandlerCustomizer() { public UndertowBuilderCustomizer builderCustomizer() {
return (builder) -> { return (builder) -> {
}; };
...@@ -452,7 +452,7 @@ public class ServletWebServerFactoryAutoConfigurationTests { ...@@ -452,7 +452,7 @@ public class ServletWebServerFactoryAutoConfigurationTests {
static class UndertowDeploymentInfoCustomizerConfiguration { static class UndertowDeploymentInfoCustomizerConfiguration {
@Bean @Bean
public UndertowDeploymentInfoCustomizer protocolHandlerCustomizer() { public UndertowDeploymentInfoCustomizer deploymentInfoCustomizer() {
return (deploymentInfo) -> { return (deploymentInfo) -> {
}; };
......
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