(R r)
| 357 | } |
| 358 | |
| 359 | @SuppressWarnings("unchecked") |
| 360 | private final R nullSafe(R r) { |
| 361 | return r != null ? r : (R) Tools.configuration(this).dsl().newRecord(fields()); |
| 362 | } |
| 363 | |
| 364 | private final void formatHorizontalLine(Writer writer, TXTFormat format, final int[] widths) throws java.io.IOException { |
| 365 | if (format.verticalTableBorder()) |
no test coverage detected