mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-02 07:28:24 +07:00
8 lines
235 B
Java
8 lines
235 B
Java
// "Replace with 'String.repeat()'" "true"
|
|
class Test {
|
|
String testRepeat(String s, StringBuilder sb, int digits) {
|
|
if ((s.length() < digits) && (sb.length() > 0)) {
|
|
sb.append("0".repeat(digits - s.length()));
|
|
}
|
|
}
|
|
} |