UnnecessaryStringBuilder
Prefer string concatenation over explicitly using `StringBuilder#append`, since `+` reads better and has equivalent or better performance.
Suppression
Suppress false positives by adding the suppression annotation @SuppressWarnings("UnnecessaryStringBuilder")
to the enclosing element.