summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers/jdbc/Ref.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/drivers/jdbc/Ref.cxx')
-rw-r--r--connectivity/source/drivers/jdbc/Ref.cxx16
1 files changed, 6 insertions, 10 deletions
diff --git a/connectivity/source/drivers/jdbc/Ref.cxx b/connectivity/source/drivers/jdbc/Ref.cxx
index ca8e2e112815..12ce9fda8aa3 100644
--- a/connectivity/source/drivers/jdbc/Ref.cxx
+++ b/connectivity/source/drivers/jdbc/Ref.cxx
@@ -23,30 +23,26 @@ using namespace connectivity;
//************ Class: java.sql.Ref
-
jclass java_sql_Ref::theClass = nullptr;
-java_sql_Ref::java_sql_Ref( JNIEnv * pEnv, jobject myObj )
-: java_lang_Object( pEnv, myObj )
+java_sql_Ref::java_sql_Ref(JNIEnv* pEnv, jobject myObj)
+ : java_lang_Object(pEnv, myObj)
{
SDBThreadAttach::addRef();
}
-java_sql_Ref::~java_sql_Ref()
-{
- SDBThreadAttach::releaseRef();
-}
+java_sql_Ref::~java_sql_Ref() { SDBThreadAttach::releaseRef(); }
jclass java_sql_Ref::getMyClass() const
{
// the class must be fetched only once, therefore static
- if( !theClass )
+ if (!theClass)
theClass = findMyClass("java/sql/Ref");
return theClass;
}
-OUString SAL_CALL java_sql_Ref::getBaseTypeName( )
+OUString SAL_CALL java_sql_Ref::getBaseTypeName()
{
static jmethodID mID(nullptr);
- return callStringMethod("getBaseTypeName",mID);
+ return callStringMethod("getBaseTypeName", mID);
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */