Default StringBuilder size should be larger than default 16.

This commit is contained in:
Anthony Whitford
2015-12-28 13:14:04 -08:00
parent e0b8be20b3
commit 6604c0da89

View File

@@ -417,7 +417,7 @@ public class SuppressionRule {
*/
@Override
public String toString() {
final StringBuilder sb = new StringBuilder();
final StringBuilder sb = new StringBuilder(64);
sb.append("SuppressionRule{");
if (filePath != null) {
sb.append("filePath=").append(filePath).append(',');