mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-02 14:38:30 +07:00
10 lines
236 B
Java
10 lines
236 B
Java
// "Replace with 'String.repeat()'" "false"
|
|
class Test {
|
|
String hundredNumbers() {
|
|
StringBuilder sb = new StringBuilder();
|
|
f<caret>or(int i=0; i<100; i++) {
|
|
sb.append(Math.random());
|
|
}
|
|
return sb.toString();
|
|
}
|
|
} |