Skip to content

Commit

Permalink
Fixed failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
davidjgonzalez committed Nov 3, 2020
1 parent 89e9cd7 commit 5d83212
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ public abstract class AbstractDispatcherCacheHeaderFilter implements Filter {

private List<ServiceRegistration> filterRegistrations = new ArrayList<ServiceRegistration>();

private boolean allowAllParams;
private List<String> passThroughParams;
private List<String> blockParams;
private boolean allowAllParams = false;
private List<String> passThroughParams = new ArrayList<String>();
private List<String> blockParams = new ArrayList<String>();

/**
* Get the value to place in the Cache-Control header.
Expand Down

0 comments on commit 5d83212

Please sign in to comment.