Skip to content
New issue

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

bug in StringBuilderConstantParameters fixer #2812

Open
nakulj opened this issue Jun 4, 2024 · 0 comments
Open

bug in StringBuilderConstantParameters fixer #2812

nakulj opened this issue Jun 4, 2024 · 0 comments

Comments

@nakulj
Copy link

nakulj commented Jun 4, 2024

What happened?

Correctly spots a StringBuilderConstantParameters here, but suggests an incorrect fix:

new StringBuilder(foo)
  .append("_")
  .append(bar)
  .toString()
  .toLowerCase();

Suggestion:

foo + "_" + bar.toLowerCase();

What did you want to happen?

(foo + "_" + bar).toLowerCase();
@nakulj nakulj mentioned this issue Jun 5, 2024
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant