Closes gh-15873
This commit is contained in:
Johnny Lim 2019-02-08 10:08:54 +09:00 committed by Stephane Nicoll
parent 7bdcee5e3d
commit 885c28891b
7 changed files with 9 additions and 14 deletions

View File

@ -181,7 +181,7 @@ work with m2eclipse, we provide an additional Eclipse plugin that you can instal
===== Install the Spring Formatter plugin
* Select "`Help`" -> "`Install New Software`".
* Add `https://dl.bintray.com/spring/javaformat-eclipse/` as a site.
* Install "Spring Java Format"
* Install "Spring Java Format".
NOTE: The plugin is optional. Projects can be imported without the plugins, your code
changes just won't be automatically formatted.

View File

@ -23,7 +23,7 @@ import org.springframework.boot.actuate.autoconfigure.metrics.export.properties.
/**
* Adapter to convert {@link DynatraceProperties} to a {@link DynatraceConfig}.
*
* @author Andy Wilkinson *
* @author Andy Wilkinson
*/
class DynatracePropertiesConfigAdapter
extends StepRegistryPropertiesConfigAdapter<DynatraceProperties>

View File

@ -6395,7 +6395,7 @@ configured as it requires an `AsyncTaskExecutor` implementation (named
an `AsyncConfigurer` wrapping your custom `Executor`.
The auto-configured `TaskExecutorBuilder` allows you to easily create instances that
reproduces what the auto-configuration does by default.
reproduce what the auto-configuration does by default.
====
The thread pool uses 8 core threads that can grow and shrink according to the load. Those

View File

@ -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,

View File

@ -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,

View File

@ -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;

View File

@ -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)