server/src/main/java/org/apache/uniffle/server/block/PartitionedShuffleBlockIdManager.java [131:139]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public void removeBlockIdByShuffleId(String appId, List<Integer> shuffleIds) {
    Optional.ofNullable(partitionsToBlockIds.get(appId))
        .ifPresent(
            x -> {
              for (Integer shuffleId : shuffleIds) {
                x.remove(shuffleId);
              }
            });
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



server/src/main/java/org/apache/uniffle/server/block/DefaultShuffleBlockIdManager.java [186:194]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public void removeBlockIdByShuffleId(String appId, List<Integer> shuffleIds) {
    Optional.ofNullable(partitionsToBlockIds.get(appId))
        .ifPresent(
            x -> {
              for (Integer shuffleId : shuffleIds) {
                x.remove(shuffleId);
              }
            });
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



