We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Correctly spots a StringBuilderConstantParameters here, but suggests an incorrect fix:
StringBuilderConstantParameters
new StringBuilder(foo) .append("_") .append(bar) .toString() .toLowerCase();
Suggestion:
foo + "_" + bar.toLowerCase();
(foo + "_" + bar).toLowerCase();
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What happened?
Correctly spots a
StringBuilderConstantParameters
here, but suggests an incorrect fix:Suggestion:
What did you want to happen?
The text was updated successfully, but these errors were encountered: