From a7704c8cceb2e2c04c6a843f575463f32674299d Mon Sep 17 00:00:00 2001 From: Chris Beams Date: Thu, 6 Jan 2011 07:43:03 +0000 Subject: [PATCH] Polish Javadoc for PropertySource implementations --- .../org/springframework/core/env/MapPropertySource.java | 6 +++--- .../springframework/core/env/MutablePropertySources.java | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/org.springframework.core/src/main/java/org/springframework/core/env/MapPropertySource.java b/org.springframework.core/src/main/java/org/springframework/core/env/MapPropertySource.java index 3fbc6378ffc..05eec722614 100644 --- a/org.springframework.core/src/main/java/org/springframework/core/env/MapPropertySource.java +++ b/org.springframework.core/src/main/java/org/springframework/core/env/MapPropertySource.java @@ -19,15 +19,15 @@ package org.springframework.core.env; import java.util.Map; /** - * {@link PropertySource} that reads keys and values from a {@code Map} object. + * {@link PropertySource} that reads keys and values from a {@code Map} object. * * @author Chris Beams * @since 3.1 * @see PropertiesPropertySource */ -public class MapPropertySource extends EnumerablePropertySource> { +public class MapPropertySource extends EnumerablePropertySource> { - protected MapPropertySource(String name, Map source) { + protected MapPropertySource(String name, Map source) { super(name, source); } diff --git a/org.springframework.core/src/main/java/org/springframework/core/env/MutablePropertySources.java b/org.springframework.core/src/main/java/org/springframework/core/env/MutablePropertySources.java index 418d7572b19..b05f78c1a67 100644 --- a/org.springframework.core/src/main/java/org/springframework/core/env/MutablePropertySources.java +++ b/org.springframework.core/src/main/java/org/springframework/core/env/MutablePropertySources.java @@ -87,7 +87,7 @@ public class MutablePropertySources implements PropertySources { } /** - * Add the given property source object with precedence immediately greater + * Add the given property source object with precedence immediately higher * than the named relative property source. */ public void addBefore(String relativePropertySourceName, PropertySource propertySource) { @@ -98,7 +98,7 @@ public class MutablePropertySources implements PropertySources { } /** - * Add the given property source object with precedence immediately less than + * Add the given property source object with precedence immediately lower than * than the named relative property source. */ public void addAfter(String relativePropertySourceName, PropertySource propertySource) {