Skip to content

Commit

Permalink
refactor: fixed checkstyle issues
Browse files Browse the repository at this point in the history
Signed-off-by: Maximillian Arruda <dearrudam@gmail.com>
  • Loading branch information
dearrudam committed Mar 12, 2024
1 parent 89a3d50 commit eec1d3a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ class DynamoDBDocumentEntityConverter {
static final String ENTITY = "@entity";
private static final Jsonb JSONB = JsonbSupplier.getInstance().get();

private DynamoDBDocumentEntityConverter() {}

static EnhancedDocument toEnhancedDocument(DocumentEntity documentEntity) {
return EnhancedDocument.builder()
.json(JSONB.toJson(getMap(documentEntity)))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@

package org.eclipse.jnosql.databases.dynamodb.communication;

import org.eclipse.jnosql.communication.document.*;
import org.eclipse.jnosql.communication.document.DocumentDeleteQuery;
import org.eclipse.jnosql.communication.document.DocumentEntity;
import org.eclipse.jnosql.communication.document.DocumentManager;
import org.eclipse.jnosql.communication.document.DocumentPreparedStatement;
import org.eclipse.jnosql.communication.document.DocumentQuery;
import software.amazon.awssdk.services.dynamodb.DynamoDbClient;

import java.time.Duration;
Expand Down

0 comments on commit eec1d3a

Please sign in to comment.