summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers/jdbc/Boolean.cxx
diff options
context:
space:
mode:
authorThomas Benisch <tbe@openoffice.org>2010-09-29 17:20:24 +0200
committerThomas Benisch <tbe@openoffice.org>2010-09-29 17:20:24 +0200
commitbcb76b83b7ac714d5476e7f066f465a4bfb88b77 (patch)
tree920cdab0db87ac8d61988f37b1716f7eead07149 /connectivity/source/drivers/jdbc/Boolean.cxx
parent9880b2493d6ee7057a67d011d937096b604ab5dd (diff)
parentbd1092ebc0b329883d1c079d598a73f3af4cd548 (diff)
chartextensibility: merge with DEV300_m88
Diffstat (limited to 'connectivity/source/drivers/jdbc/Boolean.cxx')
-rw-r--r--connectivity/source/drivers/jdbc/Boolean.cxx17
1 files changed, 0 insertions, 17 deletions
diff --git a/connectivity/source/drivers/jdbc/Boolean.cxx b/connectivity/source/drivers/jdbc/Boolean.cxx
index 2df75283a14b..fd52f3092c0e 100644
--- a/connectivity/source/drivers/jdbc/Boolean.cxx
+++ b/connectivity/source/drivers/jdbc/Boolean.cxx
@@ -49,20 +49,3 @@ jclass java_lang_Boolean::getMyClass() const
{
return st_getMyClass();
}
-
-java_lang_Boolean::java_lang_Boolean( sal_Bool _par0 ): java_lang_Object( NULL, (jobject)NULL )
-{
- SDBThreadAttach t;
- // Java-Call fuer den Konstruktor absetzen
- // temporaere Variable initialisieren
- static const char * cSignature = "(Z)V";
- jobject tempObj;
- static jmethodID mID(NULL);
- obtainMethodId(t.pEnv, "<init>",cSignature, mID);
- tempObj = t.pEnv->NewObject( getMyClass(), mID, _par0 );
- saveRef( t.pEnv, tempObj );
- t.pEnv->DeleteLocalRef( tempObj );
- // und aufraeumen
-}
-
-