/* (non-Javadoc)
  * @see org.eclipse.team.core.subscribers.SyncInfoSetChangeSetCollector#add(org.eclipse.team.core.synchronize.SyncInfo[])
  */
 protected void add(SyncInfo[] infos) {
   LogEntryCacheUpdateHandler handler = getLogEntryHandler();
   if (handler != null)
     try {
       handler.fetch(infos);
     } catch (CVSException e) {
       getConfiguration()
           .getSyncInfoSet()
           .addError(new TeamStatus(IStatus.ERROR, CVSUIPlugin.ID, 0, e.getMessage(), e, null));
     }
 }