We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e16919c commit 86f0b52Copy full SHA for 86f0b52
core/src/main/java/io/github/joeljeremy7/externalizedproperties/core/ExternalizedProperties.java
@@ -345,14 +345,14 @@ private RootProcessor buildRootProcessor(List<Processor> processors) {
345
return new RootProcessor(processors);
346
}
347
348
- public Builder addProfileConfiguration(
+ private Builder addProfileConfiguration(
349
ProfileConfiguration profileConfiguration
350
) {
351
profileConfigurations.add(profileConfiguration);
352
return this;
353
354
355
- public Builder applyProfileConfigurations(String activeProfile) {
+ private Builder applyProfileConfigurations(String activeProfile) {
356
profileConfigurations.forEach(c -> c.applyProfile(activeProfile));
357
358
0 commit comments