Skip to content

Commit

Permalink
Remove unnecessary if clause
Browse files Browse the repository at this point in the history
Signed-off-by: Takahiro Nakayama <[email protected]>
  • Loading branch information
civitaspo committed Mar 18, 2023
1 parent ba8a190 commit fb54726
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ case class DynamodbScanOperation(task: DynamodbScanOperation.Task)
case _ =>
f(result.getItems.asScala.map(_.asScala.toMap).toSeq)
Option(result.getLastEvaluatedKey) match {
case Some(v) if (loadableRecords.isDefined) =>
case Some(v) =>
runInternal(
dynamodb,
embulkTaskIndex,
Expand Down

0 comments on commit fb54726

Please sign in to comment.