diff --git a/library/src/main/java/blog/softwaretester/properties/PropertyAggregator.java b/library/src/main/java/blog/softwaretester/properties/PropertyAggregator.java index e62fecd..27c868e 100644 --- a/library/src/main/java/blog/softwaretester/properties/PropertyAggregator.java +++ b/library/src/main/java/blog/softwaretester/properties/PropertyAggregator.java @@ -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 processedProperties) { + private void addDefaultValues( + final Builder builder, + final Map processedProperties) { // Process default values for (Map.Entry entry : builder.propertyDefaultValues.entrySet()) { @@ -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. */ @@ -85,6 +87,7 @@ private Map applyCustomPredicates( /** * Filters out a specific list of property keys. + * * @param builder The {@link Builder}. * @return The processed list of properties. */