From 779d5716e59d4d3caa9de295eb7c91d3718e87e4 Mon Sep 17 00:00:00 2001 From: Juergen Hoeller Date: Wed, 11 Dec 2013 18:45:23 +0100 Subject: [PATCH] Moved RequiredAnnotationBeanPostProcessorTests to correct package beans.factory.annotation --- .../annotation/AnnotationBeanWiringInfoResolverTests.java | 2 +- .../annotation/RequiredAnnotationBeanPostProcessorTests.java | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) rename spring-beans/src/test/java/org/springframework/beans/{ => factory}/annotation/AnnotationBeanWiringInfoResolverTests.java (98%) rename spring-beans/src/test/java/org/springframework/beans/{ => factory}/annotation/RequiredAnnotationBeanPostProcessorTests.java (96%) diff --git a/spring-beans/src/test/java/org/springframework/beans/annotation/AnnotationBeanWiringInfoResolverTests.java b/spring-beans/src/test/java/org/springframework/beans/factory/annotation/AnnotationBeanWiringInfoResolverTests.java similarity index 98% rename from spring-beans/src/test/java/org/springframework/beans/annotation/AnnotationBeanWiringInfoResolverTests.java rename to spring-beans/src/test/java/org/springframework/beans/factory/annotation/AnnotationBeanWiringInfoResolverTests.java index b623750f363..b4b9ec2a288 100644 --- a/spring-beans/src/test/java/org/springframework/beans/annotation/AnnotationBeanWiringInfoResolverTests.java +++ b/spring-beans/src/test/java/org/springframework/beans/factory/annotation/AnnotationBeanWiringInfoResolverTests.java @@ -14,7 +14,7 @@ * limitations under the License. */ -package org.springframework.beans.annotation; +package org.springframework.beans.factory.annotation; import static org.junit.Assert.*; diff --git a/spring-beans/src/test/java/org/springframework/beans/annotation/RequiredAnnotationBeanPostProcessorTests.java b/spring-beans/src/test/java/org/springframework/beans/factory/annotation/RequiredAnnotationBeanPostProcessorTests.java similarity index 96% rename from spring-beans/src/test/java/org/springframework/beans/annotation/RequiredAnnotationBeanPostProcessorTests.java rename to spring-beans/src/test/java/org/springframework/beans/factory/annotation/RequiredAnnotationBeanPostProcessorTests.java index 7c728a55a29..04180cf06a8 100644 --- a/spring-beans/src/test/java/org/springframework/beans/annotation/RequiredAnnotationBeanPostProcessorTests.java +++ b/spring-beans/src/test/java/org/springframework/beans/factory/annotation/RequiredAnnotationBeanPostProcessorTests.java @@ -14,7 +14,7 @@ * limitations under the License. */ -package org.springframework.beans.annotation; +package org.springframework.beans.factory.annotation; import static org.junit.Assert.*; @@ -28,8 +28,6 @@ import org.springframework.beans.factory.BeanCreationException; import org.springframework.beans.factory.BeanFactory; import org.springframework.beans.factory.BeanFactoryAware; import org.springframework.beans.factory.BeanNameAware; -import org.springframework.beans.factory.annotation.Required; -import org.springframework.beans.factory.annotation.RequiredAnnotationBeanPostProcessor; import org.springframework.beans.factory.config.BeanDefinition; import org.springframework.beans.factory.support.BeanDefinitionBuilder; import org.springframework.beans.factory.support.DefaultListableBeanFactory;