/**
  * Delete history rows older than a specified timestamp.
  *
  * @param timeCutoff is the timestamp to delete older rows before.
  */
 @Override
 public void cleanUpHistoryData(long timeCutoff) throws ManifoldCFException {
   historyManager.deleteOldRows(timeCutoff);
 }