Files
Tagir Valeevandintellij-monorepo-bot 2ca2ae1758 [java-inspections] ReplaceInefficientStreamCountInspection: support cs.chars().count()
Part of IDEA-351174 String .chars().count() to be suggested as .length()

GitOrigin-RevId: e5f25e8dbfbfd36a855caf37869f31209356dce8
2024-04-11 14:46:25 +00:00

6 lines
135 B
Java

// "Replace with 'CharSequence.length()'" "true-preview"
class X {
void test(CharSequence cs) {
var x = (long) cs.length();
}
}