Skip to content

Commit

Permalink
ensure JwtRequest can be mocked
Browse files Browse the repository at this point in the history
  • Loading branch information
rmannibucau committed Aug 27, 2018
1 parent 6f3be2d commit 23a8e4b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public class JwtRequest extends HttpServletRequestWrapper {
private final Supplier<JsonWebToken> tokenExtractor;
private volatile JsonWebToken token; // cache for perf reasons

JwtRequest(final JwtParser service, final String header, final String prefix, final HttpServletRequest request) {
public JwtRequest(final JwtParser service, final String header, final String prefix, final HttpServletRequest request) {
super(request);
this.delegate = request;

Expand Down

0 comments on commit 23a8e4b

Please sign in to comment.