polishing removed @Overides as well as fixed warnings in JMS and JMX
This commit is contained in:
@@ -81,7 +81,6 @@ public class FtpInboundChannelAdapterParserTests {
|
||||
|
||||
public static class TestClientFactoryBean implements FactoryBean<DefaultFtpClientFactory>{
|
||||
|
||||
@Override
|
||||
public DefaultFtpClientFactory getObject() throws Exception {
|
||||
DefaultFtpClientFactory factory = mock(DefaultFtpClientFactory.class);
|
||||
FTPClient client = mock(FTPClient.class);
|
||||
@@ -89,12 +88,10 @@ public class FtpInboundChannelAdapterParserTests {
|
||||
return factory;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Class<?> getObjectType() {
|
||||
return DefaultFtpClientFactory.class;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isSingleton() {
|
||||
return true;
|
||||
}
|
||||
|
||||
@@ -101,8 +101,6 @@ public class InboundOneWayErrorTests {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@SuppressWarnings("unused")
|
||||
private static class TestErrorHandler implements ErrorHandler {
|
||||
|
||||
private final CountDownLatch latch = new CountDownLatch(1);
|
||||
|
||||
@@ -33,7 +33,6 @@ import org.springframework.util.Assert;
|
||||
* @author Mark Fisher
|
||||
* @since 2.0
|
||||
*/
|
||||
@SuppressWarnings("rawtypes")
|
||||
public class AttributePollingMessageSource extends AbstractMessageSource<Object> {
|
||||
|
||||
private volatile ObjectName objectName;
|
||||
|
||||
Reference in New Issue
Block a user