Skip to content

Commit

Permalink
Remove unused private constructor
Browse files Browse the repository at this point in the history
org.apache.logging.log4j.core.filter.CompositeFilter.CompositeFilter()
  • Loading branch information
garydgregory committed Oct 9, 2024
1 parent c055b45 commit e9c7480
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,6 @@ public final class CompositeFilter extends AbstractLifeCycle implements Iterable

private final Filter[] filters;

private CompositeFilter() {
this.filters = Filter.EMPTY_ARRAY;
}

private CompositeFilter(final Filter[] filters) {
this.filters = filters == null ? Filter.EMPTY_ARRAY : filters;
}
Expand Down

0 comments on commit e9c7480

Please sign in to comment.