java.lang.String.concat()
.
Such calls can be replaced with the +
operator for clarity and possible increased
performance if the method was invoked on a constant with a constant argument.
Example:
String foo(String name) {
return name.concat("foo");
}
After the quick-fix is applied:
String foo(String name) {
return name + "foo";
}