mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-06 01:06:54 +07:00
10 lines
234 B
Java
10 lines
234 B
Java
// "Replace with 'String.repeat()'" "true"
|
|
class Test {
|
|
String spaces(int c, int d) {
|
|
StringBuilder sb = new StringBuilder();
|
|
f<caret>or(int i=1; i<=c-d; i++) {
|
|
sb.append(123_456);
|
|
}
|
|
return sb.toString();
|
|
}
|
|
} |