You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by de...@apache.org on 2016/05/15 16:58:06 UTC

svn commit: r1743923 - /commons/proper/configuration/trunk/src/test/java/org/apache/commons/configuration2/spring/TestConfigurationPropertySource.java

Author: deki
Date: Sun May 15 16:58:06 2016
New Revision: 1743923

URL: http://svn.apache.org/viewvc?rev=1743923&view=rev
Log:
[CONFIGURATION-624] added comment

Modified:
    commons/proper/configuration/trunk/src/test/java/org/apache/commons/configuration2/spring/TestConfigurationPropertySource.java

Modified: commons/proper/configuration/trunk/src/test/java/org/apache/commons/configuration2/spring/TestConfigurationPropertySource.java
URL: http://svn.apache.org/viewvc/commons/proper/configuration/trunk/src/test/java/org/apache/commons/configuration2/spring/TestConfigurationPropertySource.java?rev=1743923&r1=1743922&r2=1743923&view=diff
==============================================================================
--- commons/proper/configuration/trunk/src/test/java/org/apache/commons/configuration2/spring/TestConfigurationPropertySource.java (original)
+++ commons/proper/configuration/trunk/src/test/java/org/apache/commons/configuration2/spring/TestConfigurationPropertySource.java Sun May 15 16:58:06 2016
@@ -56,6 +56,7 @@ public class TestConfigurationPropertySo
         public PropertySourcesPlaceholderConfigurer propertySourcesPlaceholderConfigurer(ConfigurableEnvironment
                                                                                                         env) {
             PropertySourcesPlaceholderConfigurer configurer = new PropertySourcesPlaceholderConfigurer();
+            // https://jira.spring.io/browse/SPR-9631 may simplify this in future
             MutablePropertySources sources = new MutablePropertySources();
             sources.addLast(createConfigPropertySource());
             configurer.setPropertySources(sources);