DATACMNS-867 - Removed obsolete reference to Environment from @EnableSpringDataWebSupport.

This commit is contained in:
Oliver Gierke
2016-12-20 15:20:20 +01:00
parent 9c6f764131
commit 282881a64c

View File

@@ -23,11 +23,9 @@ import java.lang.annotation.Target;
import java.util.ArrayList;
import java.util.List;
import org.springframework.context.EnvironmentAware;
import org.springframework.context.ResourceLoaderAware;
import org.springframework.context.annotation.Import;
import org.springframework.context.annotation.ImportSelector;
import org.springframework.core.env.Environment;
import org.springframework.core.io.ResourceLoader;
import org.springframework.core.io.support.SpringFactoriesLoader;
import org.springframework.core.type.AnnotationMetadata;
@@ -81,25 +79,14 @@ public @interface EnableSpringDataWebSupport {
*
* @author Oliver Gierke
*/
static class SpringDataWebConfigurationImportSelector
implements ImportSelector, EnvironmentAware, ResourceLoaderAware {
static class SpringDataWebConfigurationImportSelector implements ImportSelector, ResourceLoaderAware {
// Don't make final to allow test cases faking this to false
private static boolean HATEOAS_PRESENT = ClassUtils.isPresent("org.springframework.hateoas.Link", null);
private static boolean JACKSON_PRESENT = ClassUtils.isPresent("com.fasterxml.jackson.databind.ObjectMapper", null);
private Environment environment;
private ResourceLoader resourceLoader;
/*
* (non-Javadoc)
* @see org.springframework.context.EnvironmentAware#setEnvironment(org.springframework.core.env.Environment)
*/
@Override
public void setEnvironment(Environment environment) {
this.environment = environment;
}
/*
* (non-Javadoc)
* @see org.springframework.context.ResourceLoaderAware#setResourceLoader(org.springframework.core.io.ResourceLoader)