Remove default implementation

This commit is contained in:
Jack Berg 2025-06-24 17:38:33 -05:00
parent 21d7756a80
commit d6f7a42edb
No known key found for this signature in database
GPG Key ID: 8ACA4A135F1F2D23
1 changed files with 1 additions and 3 deletions

View File

@ -225,7 +225,5 @@ public interface DeclarativeConfigProperties {
Set<String> getPropertyKeys(); Set<String> getPropertyKeys();
/** Return a {@link ComponentLoader} that should be used to load SPIs. */ /** Return a {@link ComponentLoader} that should be used to load SPIs. */
default ComponentLoader getComponentLoader() { ComponentLoader getComponentLoader();
return ComponentLoader.forClassLoader(DeclarativeConfigProperties.class.getClassLoader());
}
} }