mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-31 04:07:30 +07:00
GitOrigin-RevId: 9d8cf85eb1eee3ca8a38c2bcde119666afcc7934
11 lines
221 B
Java
11 lines
221 B
Java
// "Replace with 'Collection.size()'" "true-preview"
|
|
|
|
import java.util.Arrays;
|
|
|
|
class Test {
|
|
short cnt() {
|
|
/*before dot*/
|
|
//after dot
|
|
return (short) Arrays.asList('d', 'e', 'f').size();
|
|
}
|
|
} |