@SuppressWarnings("restriction")
public void clear() {
if (getSubscriberSyncInfoCollector() != null && getSubscriberSyncInfoCollector().getSyncInfoSet() != null
&& !getSubscriberSyncInfoCollector().getSyncInfoSet().isEmpty()) {
SyncInfoTree syncInfoTree = getSyncInfoSet();
if (logger.isInfoEnabled()) {
logger.info("Clearing [" + syncInfoTree.size() + "] sync infogs from tree");
}
syncInfoTree.clear();
}
}