Skip to content

Commit

Permalink
Fix documentation code block bug.
Browse files Browse the repository at this point in the history
Closes gh-12980
  • Loading branch information
1993heqiang authored and rwinch committed Apr 10, 2023
1 parent 64a1ad5 commit 54de5c9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ There are convenience mechanisms to make this easier, but this is still not inte
.Java
[source,java,role="primary",attrs="-attributes"]
----
User user = User.withDefaultPasswordEncoder()
UserDetails user = User.withDefaultPasswordEncoder()
.username("user")
.password("password")
.roles("user")
Expand Down Expand Up @@ -243,12 +243,12 @@ If you are creating multiple users, you can also reuse the builder:
[source,java,role="primary"]
----
UserBuilder users = User.withDefaultPasswordEncoder();
User user = users
UserDetails user = users
.username("user")
.password("password")
.roles("USER")
.build();
User admin = users
UserDetails admin = users
.username("admin")
.password("password")
.roles("USER","ADMIN")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -820,7 +820,7 @@ Authentication authentication = this.authenticationManager.authenticate(token);
// ...
SecurityContext context = SecurityContextHolder.createEmptyContext(); <1>
context.setAuthentication(authentication); <2>
SecurityContextHolder.setContext(authentication); <3>
SecurityContextHolder.setContext(context); <3>
----
====

Expand Down

0 comments on commit 54de5c9

Please sign in to comment.