File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
dynamodb-driver/src/main/java/org/jnosql/diana/dynamodb Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -32,12 +32,12 @@ public class DynamoDBConfiguration {
3232 protected DynamoDbAsyncClientBuilder builderAsync = DynamoDbAsyncClient .builder ();
3333
3434
35- public void syncBuilder (DynamoDbClientBuilder builder ) throws NullPointerException {
35+ public void syncBuilder (DynamoDbClientBuilder builder ) {
3636 requireNonNull (builder , "builder is required" );
3737 this .builder = builder ;
3838 }
3939
40- public void asyncBuilder (DynamoDbAsyncClientBuilder builderAsync ) throws NullPointerException {
40+ public void asyncBuilder (DynamoDbAsyncClientBuilder builderAsync ) {
4141 requireNonNull (builderAsync , "asyncBuilder is required" );
4242 this .builderAsync = builderAsync ;
4343 }
You can’t perform that action at this time.
0 commit comments