mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 08:06:56 +07:00
10 lines
224 B
Java
10 lines
224 B
Java
// "Replace with 'String.repeat()'" "true"
|
|
class Test {
|
|
String hundredSpaces() {
|
|
StringBuilder sb = new StringBuilder();
|
|
f<caret>or(int i=0; i<100; i++) {
|
|
sb.append(" ");
|
|
}
|
|
return sb.toString();
|
|
}
|
|
} |