1
0
mirror of synced 2026-07-05 02:40:02 +00:00

Added chained append call in toString method

This commit is contained in:
Luke Taylor
2006-06-14 21:46:21 +00:00
parent b0caa72e80
commit eb3e954ae4
@@ -72,7 +72,7 @@ public class SecurityContextImpl implements SecurityContext {
if (this.authentication == null) {
sb.append(": Null authentication");
} else {
sb.append(": Authentication: " + this.authentication);
sb.append(": Authentication: ").append(this.authentication);
}
return sb.toString();