We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10376d8 commit 7bab027Copy full SHA for 7bab027
spring-cloud-aws-dynamodb/src/main/java/io/awspring/cloud/dynamodb/DynamoDbTableSchemaResolver.java
@@ -34,17 +34,4 @@ public interface DynamoDbTableSchemaResolver {
34
* @param <T> - type
35
*/
36
<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
- }
50
}
0 commit comments