StringJoin
String.join(CharSequence) performs no joining (it always returns the empty string); String.join(CharSequence, CharSequence) performs no joining (it just returns the 2nd parameter).
Suppression
Suppress false positives by adding the suppression annotation @SuppressWarnings("StringJoin")
to the enclosing element.