From 479501be6c8e31574b2abbe7267c5d5a3f60a350 Mon Sep 17 00:00:00 2001 From: Thomas Darimont Date: Mon, 6 Oct 2014 12:01:45 +0200 Subject: [PATCH 1/2] DATACMNS-530 - Improve javadoc for RepositoryConfigurationSourceSupport. Prepare issue branch. --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 44b1e51deb..03c61c21ee 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ org.springframework.data spring-data-commons - 1.10.0.BUILD-SNAPSHOT + 1.10.0.DATACMNS-530-SNAPSHOT Spring Data Core From 285651c9c0f6434d73e59c73fcf3bcf49b5a3e6b Mon Sep 17 00:00:00 2001 From: Thomas Darimont Date: Mon, 6 Oct 2014 13:23:37 +0200 Subject: [PATCH 2/2] DATACMNS-530 - Improve javadoc for RepositoryConfigurationSourceSupport. Removed misleading javadoc. Original pull request: #97. --- .../config/RepositoryConfigurationSourceSupport.java | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/springframework/data/repository/config/RepositoryConfigurationSourceSupport.java b/src/main/java/org/springframework/data/repository/config/RepositoryConfigurationSourceSupport.java index f8e8908373..140ee627d3 100644 --- a/src/main/java/org/springframework/data/repository/config/RepositoryConfigurationSourceSupport.java +++ b/src/main/java/org/springframework/data/repository/config/RepositoryConfigurationSourceSupport.java @@ -1,5 +1,5 @@ /* - * Copyright 2012-2013 the original author or authors. + * Copyright 2012-2014 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -22,7 +22,6 @@ import org.springframework.beans.factory.config.BeanDefinition; import org.springframework.core.env.Environment; -import org.springframework.core.env.StandardEnvironment; import org.springframework.core.io.ResourceLoader; import org.springframework.core.type.filter.TypeFilter; import org.springframework.util.Assert; @@ -40,8 +39,7 @@ public abstract class RepositoryConfigurationSourceSupport implements Repository private final Environment environment; /** - * Creates a new {@link RepositoryConfigurationSourceSupport} with the given environment. Defaults to a plain - * {@link StandardEnvironment} in case the given argument is {@literal null}. + * Creates a new {@link RepositoryConfigurationSourceSupport} with the given environment. * * @param environment must not be {@literal null}. */