From 6cfe76eeecb26a9224e89d637be65f03893d37de Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Sat, 2 Aug 2014 12:17:57 +0300 Subject: [PATCH] Polish Javadoc for MutablePropertySources --- .../springframework/core/env/MutablePropertySources.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/spring-core/src/main/java/org/springframework/core/env/MutablePropertySources.java b/spring-core/src/main/java/org/springframework/core/env/MutablePropertySources.java index 0a7c14120f..83ad9086ac 100644 --- a/spring-core/src/main/java/org/springframework/core/env/MutablePropertySources.java +++ b/spring-core/src/main/java/org/springframework/core/env/MutablePropertySources.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2012 the original author or authors. + * Copyright 2002-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. @@ -66,7 +66,7 @@ public class MutablePropertySources implements PropertySources { } /** - * Create a new {@link MutablePropertySources} object and inheriting the given logger, + * Create a new {@link MutablePropertySources} object and inherit the given logger, * usually from an enclosing {@link Environment}. */ MutablePropertySources(Log logger) { @@ -130,7 +130,7 @@ public class MutablePropertySources implements PropertySources { } /** - * Add the given property source object with precedence immediately lower than + * Add the given property source object with precedence immediately lower * than the named relative property source. */ public void addAfter(String relativePropertySourceName, PropertySource propertySource) { @@ -205,7 +205,7 @@ public class MutablePropertySources implements PropertySources { } /** - * Log the removal of the given propertySource if it is present. + * Remove the given property source if it is present. */ protected void removeIfPresent(PropertySource propertySource) { if (this.propertySourceList.contains(propertySource)) {