From 313b80233810c163e8eef7ca70b6d23ad3aaae4a Mon Sep 17 00:00:00 2001 From: Mark Fisher Date: Mon, 15 Nov 2010 17:51:55 -0500 Subject: [PATCH] removed unused variables --- .../config/FtpInboundChannelAdapterParserTests.java | 9 +++------ .../config/FtpsInboundChannelAdapterParserTests.java | 11 ++++------- 2 files changed, 7 insertions(+), 13 deletions(-) diff --git a/spring-integration-ftp/src/test/java/org/springframework/integration/ftp/config/FtpInboundChannelAdapterParserTests.java b/spring-integration-ftp/src/test/java/org/springframework/integration/ftp/config/FtpInboundChannelAdapterParserTests.java index f9ff58055f..7018b4cd41 100644 --- a/spring-integration-ftp/src/test/java/org/springframework/integration/ftp/config/FtpInboundChannelAdapterParserTests.java +++ b/spring-integration-ftp/src/test/java/org/springframework/integration/ftp/config/FtpInboundChannelAdapterParserTests.java @@ -13,24 +13,21 @@ * See the License for the specific language governing permissions and * limitations under the License. */ + package org.springframework.integration.ftp.config; import org.junit.Test; -import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; /** * @author Oleg Zhurakousky - * */ public class FtpInboundChannelAdapterParserTests { @Test public void testFtpInboundChannelAdapterComplete() throws Exception{ - - ApplicationContext ac = - new ClassPathXmlApplicationContext("FtpInboundChannelAdapterParserTests-context.xml", this.getClass()); - + new ClassPathXmlApplicationContext("FtpInboundChannelAdapterParserTests-context.xml", this.getClass()); } + } diff --git a/spring-integration-ftp/src/test/java/org/springframework/integration/ftp/config/FtpsInboundChannelAdapterParserTests.java b/spring-integration-ftp/src/test/java/org/springframework/integration/ftp/config/FtpsInboundChannelAdapterParserTests.java index 6d6bffd316..33d9fbed00 100644 --- a/spring-integration-ftp/src/test/java/org/springframework/integration/ftp/config/FtpsInboundChannelAdapterParserTests.java +++ b/spring-integration-ftp/src/test/java/org/springframework/integration/ftp/config/FtpsInboundChannelAdapterParserTests.java @@ -13,24 +13,21 @@ * See the License for the specific language governing permissions and * limitations under the License. */ + package org.springframework.integration.ftp.config; import org.junit.Test; -import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; /** * @author Oleg Zhurakousky - * */ public class FtpsInboundChannelAdapterParserTests { @Test - public void testFtpsInboundChannelAdapterComplete() throws Exception{ - - ApplicationContext ac = - new ClassPathXmlApplicationContext("FtpsInboundChannelAdapterParserTests-context.xml", this.getClass()); - + public void testFtpsInboundChannelAdapterComplete() throws Exception { + new ClassPathXmlApplicationContext("FtpsInboundChannelAdapterParserTests-context.xml", this.getClass()); } + }