diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-05-04 12:00:41 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-05-04 12:00:58 +0100 |
commit | ab30dbe70504213ae318baa88bf81e6eda99a429 (patch) | |
tree | d253d07a2f618c8cf55df1b87031c1792663c880 /connectivity | |
parent | 3761cf7660e8329670722973c567235bffe40536 (diff) |
drop useless temp debugging strings
Change-Id: I41c7053296c634c0fed5b31f2e080c3eaf59bbba
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/source/drivers/jdbc/tools.cxx | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/connectivity/source/drivers/jdbc/tools.cxx b/connectivity/source/drivers/jdbc/tools.cxx index ee21f0703797..7ed32d4a8ae6 100644 --- a/connectivity/source/drivers/jdbc/tools.cxx +++ b/connectivity/source/drivers/jdbc/tools.cxx @@ -194,18 +194,7 @@ bool connectivity::isExceptionOccurred(JNIEnv *pEnv,bool _bClear) { if ( _bClear ) pEnv->ExceptionClear(); -#if OSL_DEBUG_LEVEL > 1 - if(pEnv->IsInstanceOf(pThrowable,java_sql_SQLException_BASE::st_getMyClass())) - { - - java_sql_SQLException_BASE* pException = new java_sql_SQLException_BASE(pEnv,pThrowable); - OUString sError = pException->getMessage(); - delete pException; - } -#else pEnv->DeleteLocalRef(pThrowable); -#endif - } return bRet; |