/**
  * This will likely never be called
  *
  * @see org.kuali.kfs.sys.document.web.TableJoining#joinTable(java.util.List)
  */
 public void joinTable(List<AccountingLineTableRow> rows) {
   AccountingLineTableCell cell = getPlaceHoldingCell();
   cell.setRowSpan(rows.size());
   rows.get(0).addCell(getPlaceHoldingCell());
 }