Skip to content

Commit

Permalink
final params
Browse files Browse the repository at this point in the history
  • Loading branch information
bischoffdev committed Mar 21, 2022
1 parent 9f00d2d commit eb719a0
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,9 @@ private PropertyAggregator(final Builder builder) {
* @param builder The {@link Builder}.
* @param processedProperties The processed properties including defaults.
*/
private void addDefaultValues(Builder builder,
Map<String, String> processedProperties) {
private void addDefaultValues(
final Builder builder,
final Map<String, String> processedProperties) {
// Process default values
for (Map.Entry<String, String> entry
: builder.propertyDefaultValues.entrySet()) {
Expand All @@ -61,7 +62,8 @@ private void addDefaultValues(Builder builder,

/**
* Apply custom predicates to the processed property list.
* @param builder The {@link Builder}.
*
* @param builder The {@link Builder}.
* @param filteredProperties The current filtered properties.
* @return The new property list with the predicates applied.
*/
Expand All @@ -85,6 +87,7 @@ private Map<String, String> applyCustomPredicates(

/**
* Filters out a specific list of property keys.
*
* @param builder The {@link Builder}.
* @return The processed list of properties.
*/
Expand Down

0 comments on commit eb719a0

Please sign in to comment.