1
0
mirror of synced 2026-08-05 17:57:15 +00:00

Switching StringBuffer to StringBuilder throughout the codebase (APIs permitting).

This commit is contained in:
Luke Taylor
2009-12-18 18:44:42 +00:00
parent fac07ba8ff
commit aeed49393c
21 changed files with 22 additions and 22 deletions
@@ -160,7 +160,7 @@ public class AccessControlEntryImpl implements AccessControlEntry, AuditableAcce
}
public String toString() {
StringBuffer sb = new StringBuffer();
StringBuilder sb = new StringBuilder();
sb.append("AccessControlEntryImpl[");
sb.append("id: ").append(this.id).append("; ");
sb.append("granting: ").append(this.granting).append("; ");