Skip to content

Commit

Permalink
refactor: rename the return type
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 5b505e9 commit 95dda38
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,11 @@

import org.eclipse.jnosql.communication.Settings;
import org.eclipse.jnosql.communication.document.DocumentConfiguration;
import org.eclipse.jnosql.communication.document.DocumentManagerFactory;

public class DynamoDBDocumentConfiguration extends DynamoDBConfiguration
implements DocumentConfiguration {
@Override
public DocumentManagerFactory apply(Settings settings) {
public DynamoDBDocumentManagerFactory apply(Settings settings) {
var dynamoDB = getDynamoDB(settings);
return new DynamoDBDocumentManagerFactory(dynamoDB);
}
Expand Down

0 comments on commit 95dda38

Please sign in to comment.