mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-29 08:20:55 +07:00
9 lines
194 B
Java
9 lines
194 B
Java
// "Wrap 2nd argument using 'String.valueOf()'" "true-preview"
|
|
import java.util.*;
|
|
|
|
class Demo {
|
|
void test() {
|
|
List<String> stringList = Collections.nCopies(10, String.valueOf(20));
|
|
}
|
|
}
|