You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Compiling for a java 8 target results in the same bytecode, and applications which target java 9+ take advantage of JEP 280 for a more efficient codepath.
What happened?
StringBuilder usage with a constant number of arguments can be replaced with simple string concatenation (
+
operator).See the discussion on palantir/conjure-java#555
Compiling for a java 8 target results in the same bytecode, and applications which target java 9+ take advantage of JEP 280 for a more efficient codepath.
Can be replaced with
What did you want to happen?
We can build an errorprone check with either a suggested fix, or a refaster rule to automatically replace these in existing code.
The text was updated successfully, but these errors were encountered: