Skip to content

Commit

Permalink
Fix typo in GrizzlyJaxRsContext
Browse files Browse the repository at this point in the history
  • Loading branch information
victornoel committed Jun 20, 2017
1 parent 4e0c6d9 commit 1fe0d11
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class GrizzlyJaxRsContext extends JaxRsContext {

public GrizzlyJaxRsContext(Providers providers, ContainerRequestContext requestContext,
SessionStore sessionStore, Request request) {
super(providers, requestContext, sessionStore != null ? null : new GrizzlySessionStore());
super(providers, requestContext, sessionStore != null ? sessionStore : new GrizzlySessionStore());
this.request = request;
}

Expand Down

0 comments on commit 1fe0d11

Please sign in to comment.