Skip to content

Commit 549e749

Browse files
committedFeb 1, 2015
fixed compilation error
1 parent 504cefc commit 549e749

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎samples/java/demo/app/controllers/Application.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public Result index() {
5858
logger.debug("access granted to index");
5959
}
6060
DemoUser user = (DemoUser) ctx().args.get(SecureSocial.USER_KEY);
61-
return ok(index.render(user, SecureSocial.<DemoUser>env()));
61+
return ok(index.render(user, SecureSocial.env()));
6262
}
6363

6464
@UserAwareAction

0 commit comments

Comments
 (0)
Please sign in to comment.