/**
   * @param leftNodeId Left node ID.
   * @param topVer Topology version.
   */
  public void removeExplicitNodeLocks(UUID leftNodeId, AffinityTopologyVersion topVer) {
    for (GridDistributedCacheEntry entry : locked()) {
      try {
        entry.removeExplicitNodeLocks(leftNodeId);

        entry.context().evicts().touch(entry, topVer);
      } catch (GridCacheEntryRemovedException ignore) {
        if (log.isDebugEnabled())
          log.debug(
              "Attempted to remove node locks from removed entry in mvcc manager "
                  + "disco callback (will ignore): "
                  + entry);
      }
    }
  }