Skip to content

Commit

Permalink
Make internal profile configuration methods in ExternalizedProperties…
Browse files Browse the repository at this point in the history
… private (#20)
  • Loading branch information
joel-jeremy committed Jun 1, 2022
1 parent e16919c commit 86f0b52
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -345,14 +345,14 @@ private RootProcessor buildRootProcessor(List<Processor> processors) {
return new RootProcessor(processors);
}

public Builder addProfileConfiguration(
private Builder addProfileConfiguration(
ProfileConfiguration profileConfiguration
) {
profileConfigurations.add(profileConfiguration);
return this;
}

public Builder applyProfileConfigurations(String activeProfile) {
private Builder applyProfileConfigurations(String activeProfile) {
profileConfigurations.forEach(c -> c.applyProfile(activeProfile));
return this;
}
Expand Down

0 comments on commit 86f0b52

Please sign in to comment.