Re: [DBCP] DelegatingDatabaseMetaData returns null for @NonNull methods

2009-11-23 Thread Phil Steitz
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

Re: [DBCP] DelegatingDatabaseMetaData returns null for @NonNull methods

2009-11-23 Thread Mark Thomas
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(); } >

[DBCP] DelegatingDatabaseMetaData returns null for @NonNull methods

2009-11-23 Thread sebb
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)