Files
openide/java/java-tests/testData/inspection/stringRepeat/afterRepeatDiff.java

8 lines
236 B
Java

// "Replace with 'String.repeat()'" "true"
class Test {
String spaces(int a, int b, int c, int d) {
StringBuilder sb = new StringBuilder();
sb.append(" ".repeat(Math.max(0, c - d - (a - b))));
return sb.toString();
}
}