Apply SingleSpaceSeparator Checkstyle module

This commit also fixes its violations.

Closes gh-31469
This commit is contained in:
Johnny Lim
2023-10-22 00:10:45 +09:00
committed by Sam Brannen
parent 8a05661707
commit 64e9fcad53
164 changed files with 229 additions and 226 deletions

View File

@@ -433,10 +433,10 @@ public class MessageBrokerBeanDefinitionParserTests {
private void testChannel(
String channelName, List<Class<? extends MessageHandler>> subscriberTypes, int interceptorCount) {
String channelName, List<Class<? extends MessageHandler>> subscriberTypes, int interceptorCount) {
AbstractSubscribableChannel channel = this.appContext.getBean(channelName, AbstractSubscribableChannel.class);
for (Class<? extends MessageHandler> subscriberType : subscriberTypes) {
for (Class<? extends MessageHandler> subscriberType : subscriberTypes) {
MessageHandler subscriber = this.appContext.getBean(subscriberType);
assertThat(subscriber).as("No subscription for " + subscriberType).isNotNull();
assertThat(channel.hasSubscription(subscriber)).isTrue();

View File

@@ -92,6 +92,6 @@ public class BeanCreatingHandlerProviderTests {
}
}
private static class EchoService { }
private static class EchoService { }
}

View File

@@ -87,6 +87,6 @@ public class ServerEndpointRegistrationTests {
}
}
private static class EchoService { }
private static class EchoService { }
}

View File

@@ -135,6 +135,6 @@ public class SpringConfiguratorTests {
}
}
private static class EchoService { }
private static class EchoService { }
}