@@ -177,7 +177,7 @@ private static String[] mergeProperties(List<TestPropertySourceAttributes> attri
177177 /**
178178 * Add the {@link Properties} files from the given resource {@code locations}
179179 * to the {@link Environment} of the supplied {@code context}.
180- * <p>This method simply delegates to
180+ * <p>This method delegates to
181181 * {@link #addPropertiesFilesToEnvironment(ConfigurableEnvironment, ResourceLoader, String...)}.
182182 * @param context the application context whose environment should be updated;
183183 * never {@code null}
@@ -229,14 +229,8 @@ public static void addPropertiesFilesToEnvironment(ConfigurableEnvironment envir
229229 /**
230230 * Add property sources for the given {@code descriptors} to the
231231 * {@link Environment} of the supplied {@code context}.
232- * <p>Property placeholders in resource locations (i.e., <code>${...}</code>)
233- * will be {@linkplain Environment#resolveRequiredPlaceholders(String) resolved}
234- * against the {@code Environment}.
235- * <p>Each {@link PropertySource} will be created via the configured
236- * {@link PropertySourceDescriptor#propertySourceFactory() PropertySourceFactory}
237- * (or the {@link DefaultPropertySourceFactory} if no factory is configured)
238- * and added to the {@link PropertySources} of the environment with the highest
239- * precedence.
232+ * <p>This method delegates to
233+ * {@link #addPropertySourcesToEnvironment(ConfigurableEnvironment, ResourceLoader, List)}.
240234 * @param context the application context whose environment should be updated;
241235 * never {@code null}
242236 * @param descriptors the property source descriptors to process; potentially
0 commit comments