Deleting unused imports.

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@2352 50f2f4bb-b051-0410-bef5-90022cba6387
This commit is contained in:
Sam Brannen 2009-11-11 21:08:32 +00:00
parent 1a569633fd
commit a616e7031e
1 changed files with 1 additions and 2 deletions

View File

@ -18,7 +18,6 @@ package org.springframework.context.annotation;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@ -32,7 +31,7 @@ import org.springframework.beans.factory.xml.XmlBeanDefinitionReader;
public @interface ImportResource {
String[] value();
Class<? extends BeanDefinitionReader> reader() default XmlBeanDefinitionReader.class;
}