Skip to content

Commit 732b706

Browse files
authored
Add missing @Nullable annotation to catalog parameter of getSchemas. (#136)
1 parent 16a81e8 commit 732b706

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/java.sql/share/classes/java/sql/DatabaseMetaData.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3236,7 +3236,7 @@ ResultSet getAttributes(@Nullable String catalog, @Nullable String schemaPattern
32363236
* @see #getSearchStringEscape
32373237
* @since 1.6
32383238
*/
3239-
ResultSet getSchemas(@Nullable String catalog, String schemaPattern) throws SQLException;
3239+
ResultSet getSchemas(@Nullable String catalog, @Nullable String schemaPattern) throws SQLException;
32403240

32413241
/**
32423242
* Retrieves whether this database supports invoking user-defined or vendor functions

0 commit comments

Comments
 (0)