Browse Source

Deleting unused imports.

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@2352 50f2f4bb-b051-0410-bef5-90022cba6387
pull/1/head
Sam Brannen 16 years ago
parent
commit
a616e7031e
  1. 3
      org.springframework.context/src/main/java/org/springframework/context/annotation/ImportResource.java

3
org.springframework.context/src/main/java/org/springframework/context/annotation/ImportResource.java

@ -18,7 +18,6 @@ package org.springframework.context.annotation; @@ -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; @@ -32,7 +31,7 @@ import org.springframework.beans.factory.xml.XmlBeanDefinitionReader;
public @interface ImportResource {
String[] value();
Class<? extends BeanDefinitionReader> reader() default XmlBeanDefinitionReader.class;
}

Loading…
Cancel
Save