Skip to content

Commit

Permalink
Rename parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
skjolber committed Jan 14, 2025
1 parent d22c989 commit 5ae34e7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@

public class JsonOnlyMatchPathStrategy extends MatchPathStrategy {

public JsonOnlyMatchPathStrategy(List<Predicate<String>> excludeRequests, List<Predicate<String>> excludeResponses) {
super(excludeRequests, excludeResponses);
public JsonOnlyMatchPathStrategy(List<Predicate<String>> includeRequests, List<Predicate<String>> includeResponses) {
super(includeRequests, includeResponses);
}

@Override
Expand Down

0 comments on commit 5ae34e7

Please sign in to comment.