From 70f883303f6fae362fbc17434709306995923748 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Sun, 3 Apr 2011 17:20:02 +0000 Subject: [PATCH] Removed unnecessary declaration of @TestExecutionListeners. --- .../context/junit4/spr3896/DefaultLocationsBaseTests.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/org.springframework.test/src/test/java/org/springframework/test/context/junit4/spr3896/DefaultLocationsBaseTests.java b/org.springframework.test/src/test/java/org/springframework/test/context/junit4/spr3896/DefaultLocationsBaseTests.java index b5aafb6af22..d1dc680a7b1 100644 --- a/org.springframework.test/src/test/java/org/springframework/test/context/junit4/spr3896/DefaultLocationsBaseTests.java +++ b/org.springframework.test/src/test/java/org/springframework/test/context/junit4/spr3896/DefaultLocationsBaseTests.java @@ -21,13 +21,10 @@ import static org.junit.Assert.assertNotNull; import org.junit.Test; import org.junit.runner.RunWith; - import org.springframework.beans.Employee; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.TestExecutionListeners; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.test.context.support.DependencyInjectionTestExecutionListener; /** *

@@ -43,7 +40,6 @@ import org.springframework.test.context.support.DependencyInjectionTestExecution */ @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration -@TestExecutionListeners( { DependencyInjectionTestExecutionListener.class }) public class DefaultLocationsBaseTests { @Autowired