mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-06-28 14:52:24 +00:00
Added chained append call in toString method
This commit is contained in:
parent
b0caa72e80
commit
eb3e954ae4
@ -72,7 +72,7 @@ public class SecurityContextImpl implements SecurityContext {
|
|||||||
if (this.authentication == null) {
|
if (this.authentication == null) {
|
||||||
sb.append(": Null authentication");
|
sb.append(": Null authentication");
|
||||||
} else {
|
} else {
|
||||||
sb.append(": Authentication: " + this.authentication);
|
sb.append(": Authentication: ").append(this.authentication);
|
||||||
}
|
}
|
||||||
|
|
||||||
return sb.toString();
|
return sb.toString();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user