mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 04:03:20 +07:00
Part of IDEA-351174 String .chars().count() to be suggested as .length() GitOrigin-RevId: e5f25e8dbfbfd36a855caf37869f31209356dce8
6 lines
135 B
Java
6 lines
135 B
Java
// "Replace with 'CharSequence.length()'" "true-preview"
|
|
class X {
|
|
void test(CharSequence cs) {
|
|
var x = (long) cs.length();
|
|
}
|
|
} |