Open
Description
JdbcOperations.query(String, ResultSetExtractor<T>)
is currently declared as @Nullable
. Tweaking the declaration to:
<T extends @Nullable Object> T query(String sql, ResultSetExtractor<T> rse) throws DataAccessException;
would allow the tooling to deduce the nullability of T
from the RSE
handed into the method.