summaryrefslogtreecommitdiffstats
path: root/connectivity/source/inc/java/tools.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/inc/java/tools.hxx')
-rw-r--r--connectivity/source/inc/java/tools.hxx18
1 files changed, 0 insertions, 18 deletions
diff --git a/connectivity/source/inc/java/tools.hxx b/connectivity/source/inc/java/tools.hxx
index bd600501cfc3..aa6e805628b6 100644
--- a/connectivity/source/inc/java/tools.hxx
+++ b/connectivity/source/inc/java/tools.hxx
@@ -43,24 +43,6 @@ namespace connectivity
java_util_Properties* createStringPropertyArray(const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& info ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException);
- template<class T,class JT> ::com::sun::star::uno::Sequence< T > copyArrayAndDelete(JNIEnv *pEnv,jobjectArray _Array, const T*, const JT* )
- {
- ::com::sun::star::uno::Sequence< T > xOut;
- if(_Array)
- {
- jsize nLen = pEnv->GetArrayLength(_Array);
- xOut.realloc(nLen);
- for(jsize i=0;i<nLen;++i)
- {
- JT xInfo(pEnv,pEnv->GetObjectArrayElement(_Array,i));
- java_lang_Object::ThrowSQLException(pEnv,nullptr);
- xOut.getArray()[i] = xInfo;
- }
- pEnv->DeleteLocalRef(_Array);
- }
- return xOut;
- }
-
jobject convertTypeMapToJavaMap(JNIEnv *pEnv,const ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameAccess > & _rMap);
/** return if a exception occurred