Skip to content

Commit 7bab027

Browse files
authored
Remove deprecated resolve method (#1502)
1 parent 10376d8 commit 7bab027

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

spring-cloud-aws-dynamodb/src/main/java/io/awspring/cloud/dynamodb/DynamoDbTableSchemaResolver.java

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -34,17 +34,4 @@ public interface DynamoDbTableSchemaResolver {
3434
* @param <T> - type
3535
*/
3636
<T> TableSchema<T> resolve(Class<T> clazz);
37-
38-
/**
39-
* Resolves {@link TableSchema} from {@link Class}.
40-
*
41-
* @param clazz - the class from which table schema is resolved
42-
* @param tableName - the table name
43-
* @return table schema
44-
* @param <T> - type
45-
*/
46-
@Deprecated
47-
default <T> TableSchema resolve(Class<T> clazz, String tableName) {
48-
return resolve(clazz);
49-
}
5037
}

0 commit comments

Comments
 (0)