kh-bd / interp4j-intellij-plugin

Intellij plugin to support interp4j library
3 stars 1 forks source link

String concatenations can be replaced with string interpolation #22

Closed KhadanovichSergey closed 1 year ago

KhadanovichSergey commented 1 year ago

Expressions like this "hello, " + person.getName() + ". How is it going?" can be replaced with string interpolation. It will look like this s("hello, ${person.getName()}. How is it going?")

Implement inspection to highlight such expressions.