polishing removed @Overides as well as fixed warnings in JMS and JMX

This commit is contained in:
Oleg Zhurakousky
2010-11-16 16:11:05 -05:00
parent 81fc4edc8b
commit 67b26da0e0
3 changed files with 0 additions and 6 deletions

View File

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

View File

@@ -101,8 +101,6 @@ public class InboundOneWayErrorTests {
}
}
@SuppressWarnings("unused")
private static class TestErrorHandler implements ErrorHandler {
private final CountDownLatch latch = new CountDownLatch(1);

View File

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