Skip to content

2.5.0

Compare
Choose a tag to compare
@svc-autorelease svc-autorelease released this 16 Sep 21:08
· 2248 commits to develop since this release
78c1b21
Type Description Link
Improvement Error Prone StringBuilderConstantParameters. StringBuilder with a constant number of parameters should be replaced by simple concatenation. The Java compiler (jdk8) replaces concatenation of a constant number of arguments with a StringBuilder, while jdk 9+ take advantage of JEP 280 (https://openjdk.java.net/jeps/280) to efficiently pre-size the result for better performance than a StringBuilder. #832