Skip to content

Commit

Permalink
Make constructors of CsrfPreventionRequestCycleListener visible to su…
Browse files Browse the repository at this point in the history
…bclasses. This is required by the WebSocketAwareCsrfPreventionRequestCycleListener
  • Loading branch information
salcho committed Jul 9, 2020
1 parent 0827a19 commit c4a03da
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -192,11 +192,11 @@ public String toString()

private final ResourceIsolationPolicy resourceIsolationPolicy;

CsrfPreventionRequestCycleListener() {
protected CsrfPreventionRequestCycleListener() {
this(new DefaultResourceIsolationPolicy());
}

CsrfPreventionRequestCycleListener(ResourceIsolationPolicy resourceIsolationPolicy) {
protected CsrfPreventionRequestCycleListener(ResourceIsolationPolicy resourceIsolationPolicy) {
this.resourceIsolationPolicy = resourceIsolationPolicy;
}
/**
Expand Down

0 comments on commit c4a03da

Please sign in to comment.