mirror of
https://github.com/ysoftdevs/DependencyCheck.git
synced 2026-03-24 18:11:47 +01:00
Default StringBuilder size should be larger than default 16.
This commit is contained in:
@@ -417,7 +417,7 @@ public class SuppressionRule {
|
|||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
final StringBuilder sb = new StringBuilder();
|
final StringBuilder sb = new StringBuilder(64);
|
||||||
sb.append("SuppressionRule{");
|
sb.append("SuppressionRule{");
|
||||||
if (filePath != null) {
|
if (filePath != null) {
|
||||||
sb.append("filePath=").append(filePath).append(',');
|
sb.append("filePath=").append(filePath).append(',');
|
||||||
|
|||||||
Reference in New Issue
Block a user