Mark Thomas wrote:
> sebb wrote:
>> Findbugs has lots of complaints that the DelegatingDatabaseMetaData
>> class methods may return null for methods which should be @NonNull.
>>
>> These are all of the form:
>>
>> public String getSchemaTerm() throws SQLException {
>> { try { return _me
sebb wrote:
> Findbugs has lots of complaints that the DelegatingDatabaseMetaData
> class methods may return null for methods which should be @NonNull.
>
> These are all of the form:
>
> public String getSchemaTerm() throws SQLException {
> { try { return _meta.getSchemaTerm(); }
>
Findbugs has lots of complaints that the DelegatingDatabaseMetaData
class methods may return null for methods which should be @NonNull.
These are all of the form:
public String getSchemaTerm() throws SQLException {
{ try { return _meta.getSchemaTerm(); }
catch (SQLException e)