()
| 69 | } |
| 70 | |
| 71 | private void addSeparator() { |
| 72 | for (int width : mWidths) { |
| 73 | mTable.append("+").append(StringUtils.repeat("-", width + mSpacing * 2)); |
| 74 | } |
| 75 | mTable.append("+"); |
| 76 | mTable.append(StringUtils.LS); |
| 77 | } |
| 78 | |
| 79 | private String widthString(int width) { |
| 80 | return "%-" + width + "s"; |
no test coverage detected