Skip to content

Commit

Permalink
removed needless prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
salamonpavel committed Nov 22, 2024
1 parent 353af66 commit 0c520c5
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,7 @@ object CheckpointItemWithPartitioningFromDB {
.map(_.idCheckpoint)
.distinct

val result = orderedCheckpointIds.map { id =>
CheckpointItemWithPartitioningFromDB.fromItemsToCheckpointWithPartitioningDTO(groupedItems(id))
}
val result = orderedCheckpointIds.map { id => fromItemsToCheckpointWithPartitioningDTO(groupedItems(id)) }

val errors = result.collect { case Left(err) => err }
if (errors.nonEmpty) {
Expand Down

0 comments on commit 0c520c5

Please sign in to comment.