Fix Checkstyle violations
This commit is contained in:
@@ -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);
|
||||
|
||||
@@ -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]);
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user