Skip to content

Commit

Permalink
Fixed checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
anirudh9391 committed Aug 30, 2024
1 parent 711b020 commit 9ba36aa
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
import java.util.Optional;
import java.util.concurrent.CompletableFuture;
import java.util.function.Function;
import org.w3c.dom.Attr;
import software.amazon.awssdk.annotations.SdkInternalApi;
import software.amazon.awssdk.enhanced.dynamodb.DynamoDbEnhancedClientExtension;
import software.amazon.awssdk.enhanced.dynamodb.Expression;
Expand Down Expand Up @@ -203,7 +202,7 @@ private boolean isNotEmptyMap(Map<String, AttributeValue> map) {
// Checks if a fully empty map is being set. If that is the case, no input transformations are applied to the map
for (Map.Entry<String, AttributeValue> entry : map.entrySet()) {
if (attributeValueNonNullOrShouldWriteNull(entry.getValue())) {
return true;
return true;
}
}
return false;
Expand Down

0 comments on commit 9ba36aa

Please sign in to comment.