Fix NullAway warnings in JDBC4ResultSet

This commit is contained in:
kimminseok
2025-10-07 23:50:48 +09:00
parent 253d54c15a
commit 64fd282eb0

View File

@@ -389,7 +389,7 @@ public final class JDBC4ResultSet implements ResultSet, ResultSetMetaData {
}
@Override
@SkipNullableCheck
@Nullable
public Reader getCharacterStream(String columnLabel) throws SQLException {
return getCharacterStream(findColumn(columnLabel));
}
@@ -834,7 +834,7 @@ public final class JDBC4ResultSet implements ResultSet, ResultSetMetaData {
}
@Override
@SkipNullableCheck
@Nullable
public Time getTime(int columnIndex, Calendar cal) throws SQLException {
final Time time = getTime(columnIndex);
if (time == null || cal == null) {