Skip to content

Commit

Permalink
Fixed small mistake in InjectableSession
Browse files Browse the repository at this point in the history
  • Loading branch information
ajs6f committed Jun 24, 2013
1 parent 7df261c commit b65044c
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -42,7 +42,7 @@ public InjectableSession(final SessionFactory sessionFactory,
public Session getValue() {
if (secContext.getUserPrincipal() != null) {
logger.debug("Returning authenticated Session.");
sessionFactory.getSession(secContext, request);
return sessionFactory.getSession(secContext, request);
} else {
logger.debug("Returning unauthenticated Session.");
try {
Expand Down

0 comments on commit b65044c

Please sign in to comment.