Polish
Closes gh-15873
This commit is contained in:
committed by
Stephane Nicoll
parent
7bdcee5e3d
commit
885c28891b
@@ -152,9 +152,7 @@ public class SslServerCustomizer implements NettyServerCustomizer {
|
||||
if (resource == null) {
|
||||
return null;
|
||||
}
|
||||
else {
|
||||
return loadStore(type, provider, resource, password);
|
||||
}
|
||||
return loadStore(type, provider, resource, password);
|
||||
}
|
||||
|
||||
private KeyStore loadStore(String type, String provider, String resource,
|
||||
|
||||
@@ -182,9 +182,7 @@ class SslBuilderCustomizer implements UndertowBuilderCustomizer {
|
||||
if (resource == null) {
|
||||
return null;
|
||||
}
|
||||
else {
|
||||
return loadStore(type, provider, resource, password);
|
||||
}
|
||||
return loadStore(type, provider, resource, password);
|
||||
}
|
||||
|
||||
private KeyStore loadStore(String type, String provider, String resource,
|
||||
|
||||
@@ -450,8 +450,8 @@ public class CollectionBinderTests {
|
||||
MockConfigurationPropertySource source = new MockConfigurationPropertySource();
|
||||
source.put("foo.values[0]", "foo-bar,bar-baz");
|
||||
this.sources.add(source);
|
||||
BeanWithEnumsetCollection result = this.binder
|
||||
.bind("foo", Bindable.of(BeanWithEnumsetCollection.class)).get();
|
||||
BeanWithEnumSetCollection result = this.binder
|
||||
.bind("foo", Bindable.of(BeanWithEnumSetCollection.class)).get();
|
||||
assertThat(result.getValues().get(0)).containsExactly(ExampleEnum.FOO_BAR,
|
||||
ExampleEnum.BAR_BAZ);
|
||||
}
|
||||
@@ -574,7 +574,7 @@ public class CollectionBinderTests {
|
||||
|
||||
}
|
||||
|
||||
public static class BeanWithEnumsetCollection {
|
||||
public static class BeanWithEnumSetCollection {
|
||||
|
||||
private List<EnumSet<ExampleEnum>> values;
|
||||
|
||||
|
||||
@@ -82,8 +82,7 @@ public class SslServerCustomizerTests {
|
||||
}
|
||||
|
||||
@Test
|
||||
public void configureSslWhenSslIsEnabledWithNoKeyStoreThrowsWebServerException()
|
||||
throws Exception {
|
||||
public void configureSslWhenSslIsEnabledWithNoKeyStoreThrowsWebServerException() {
|
||||
Ssl ssl = new Ssl();
|
||||
SslServerCustomizer customizer = new SslServerCustomizer(null, ssl, null, null);
|
||||
assertThatExceptionOfType(Exception.class)
|
||||
|
||||
Reference in New Issue
Block a user