Fix Checkstyle violations

This commit is contained in:
Artem Bilan
2017-07-24 14:05:53 -04:00
parent c26cac4c17
commit 784d891fa5
3 changed files with 3 additions and 2 deletions

View File

@@ -224,7 +224,7 @@ public class DatatypeChannelTests {
}
private static QueueChannel createChannel(Class<?> ... datatypes) {
private static QueueChannel createChannel(Class<?>... datatypes) {
QueueChannel channel = new QueueChannel();
channel.setBeanName("testChannel");
channel.setDatatypes(datatypes);

View File

@@ -28,7 +28,7 @@ public class TestXmlApplicationContext extends AbstractXmlApplicationContext {
private final Resource[] resources;
public TestXmlApplicationContext(String ... xmlStrings) {
public TestXmlApplicationContext(String... xmlStrings) {
resources = new Resource[xmlStrings.length];
for (int i = 0; i < xmlStrings.length; i++) {
resources[i] = new TestResource(xmlStrings[i]);

View File

@@ -10,4 +10,5 @@
<suppress files="CachingSessionFactory" checks="FinalClass" /> <!-- Tests spy -->
<suppress files="[\\/]test[\\/]" checks="Javadoc*" />
<suppress files="[\\/]test[\\/]" checks="ImportOrder" />
<suppress files="[\\/]test[\\/]" checks="EqualsHashCode" />
</suppressions>