Exemplo n.º 1
0
 public static String repeat(String value, int count) {
   return StringUtils.repeat(value, count);
 }
Exemplo n.º 2
0
 public BlockCode(int initialCapacity, int indent) {
   this.lines = new ArrayList<String>(initialCapacity);
   this.indent = StringUtils.repeat(' ', indent * INDENT_SIZE);
 }