summaryrefslogtreecommitdiff
path: root/connectivity/source
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-05-04 12:00:41 +0100
committerCaolán McNamara <caolanm@redhat.com>2015-05-04 12:00:58 +0100
commitab30dbe70504213ae318baa88bf81e6eda99a429 (patch)
treed253d07a2f618c8cf55df1b87031c1792663c880 /connectivity/source
parent3761cf7660e8329670722973c567235bffe40536 (diff)
drop useless temp debugging strings
Change-Id: I41c7053296c634c0fed5b31f2e080c3eaf59bbba
Diffstat (limited to 'connectivity/source')
-rw-r--r--connectivity/source/drivers/jdbc/tools.cxx11
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;