Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,7 @@ public static boolean reload(PropertySourceLocator locator, ConfigurableEnvironm
* @return finds all registered property sources of the given type
* @deprecated this method will not be public in the next major release.
*/
@Deprecated(forRemoval = false)
Copy link
Contributor Author

@wind57 wind57 Sep 25, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lowers the visibility of this method: it is needed because reasoning about the code becomes far easier here.

public static <S extends PropertySource<?>> List<S> findPropertySources(Class<S> sourceClass,
static <S extends PropertySource<?>> List<S> findPropertySources(Class<S> sourceClass,
ConfigurableEnvironment environment) {
List<S> managedSources = new ArrayList<>();

Expand Down

This file was deleted.

Loading