UnnecessaryStringBuilder
Prefer string concatenation over explicitly using `StringBuilder#append`, since `+` reads better and has equivalent or better performance.

Severity
WARNING

Suppression

Suppress false positives by adding the suppression annotation @SuppressWarnings("UnnecessaryStringBuilder") to the enclosing element.