/*
  * Create a node for the given sync info object. The logs should contain the log for this info.
  *
  * @param info the info for which to create a node in the model
  * @param log the cvs log for this node
  */
 private void addSyncInfoToCommentNode(SyncInfo info, LogEntryCache logs) {
   LogEntryCacheUpdateHandler handler = getLogEntryHandler();
   if (handler != null) {
     ICVSRemoteResource remoteResource = handler.getRemoteResource(info);
     if (handler.getSubscriber() instanceof CVSCompareSubscriber && remoteResource != null) {
       addMultipleRevisions(info, logs, remoteResource);
     } else {
       addSingleRevision(info, logs, remoteResource);
     }
   }
 }