File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
spring-jdbc/src/main/java/org/springframework/jdbc/core/metadata Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change 1919import java .sql .DatabaseMetaData ;
2020import java .sql .SQLException ;
2121
22- import org .springframework . lang .Nullable ;
22+ import org .jspecify . annotations .Nullable ;
2323
2424/**
2525 * The PostgreSQL specific implementation of {@link TableMetaDataProvider}.
@@ -39,14 +39,12 @@ public PostgresTableMetaDataProvider(DatabaseMetaData databaseMetaData) throws S
3939
4040
4141 @ Override
42- @ Nullable
43- public String metaDataCatalogNameToUse (@ Nullable String catalogName ) {
42+ public @ Nullable String metaDataCatalogNameToUse (@ Nullable String catalogName ) {
4443 return catalogName ;
4544 }
4645
4746 @ Override
48- @ Nullable
49- public String metaDataSchemaNameToUse (@ Nullable String schemaName ) {
47+ public @ Nullable String metaDataSchemaNameToUse (@ Nullable String schemaName ) {
5048 return (schemaName != null ? schemaName : getDefaultSchema ());
5149 }
5250
You can’t perform that action at this time.
0 commit comments