mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
for "Redundant 'String' operation" inspection GitOrigin-RevId: 96c3b5d310b9639c74241f48348257bbb83dbe93
6 lines
147 B
Java
6 lines
147 B
Java
// "Remove unnecessary 'toCharArray()' call" "true-preview"
|
|
class Foo {
|
|
public void x(String s) {
|
|
return s.<caret>toCharArray().length;
|
|
}
|
|
} |