diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-10-17 16:02:40 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-10-18 08:51:07 +0200 |
commit | 7477ab139142c55da6a7d4fb10903dcb464ee97b (patch) | |
tree | 7761955992cff3a8070c4e2860d9524ea7315c04 /xmlsecurity | |
parent | 281fa6ac6a7df48dd65f5019d5a74148a096e253 (diff) |
loplugin:inlineablemethods in xmloff
Change-Id: I22202f85c65a862ccdafe1d521e2945e3d99252a
Diffstat (limited to 'xmlsecurity')
-rw-r--r-- | xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.cxx | 6 | ||||
-rw-r--r-- | xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.hxx | 3 |
2 files changed, 1 insertions, 8 deletions
diff --git a/xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.cxx b/xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.cxx index a0db87690f78..f5eb1d2ebfb5 100644 --- a/xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.cxx +++ b/xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.cxx @@ -220,10 +220,6 @@ void SecurityEnvironment_NssImpl::addCryptoSlot( PK11SlotInfo* aSlot) throw( Exc m_Slots.push_back(aSlot); } -CERTCertDBHandle* SecurityEnvironment_NssImpl::getCertDb() throw( Exception , RuntimeException ) { - return m_pHandler ; -} - //Could we have multiple cert dbs? void SecurityEnvironment_NssImpl::setCertDb( CERTCertDBHandle* aCertDb ) throw( Exception , RuntimeException ) { m_pHandler = aCertDb ; @@ -909,7 +905,7 @@ xmlSecKeysMngrPtr SecurityEnvironment_NssImpl::createKeysManager() throw( Except SECKEYPrivateKey* priKey = nullptr ; xmlSecKeysMngrPtr pKeysMngr = nullptr ; - handler = this->getCertDb() ; + handler = m_pHandler; /*- * The following lines is based on the private version of xmlSec-NSS diff --git a/xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.hxx b/xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.hxx index a6fa7a7b21a5..30394bb4726f 100644 --- a/xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.hxx +++ b/xmlsecurity/source/xmlsec/nss/securityenvironment_nssimpl.hxx @@ -105,9 +105,6 @@ private: static const css::uno::Sequence< sal_Int8 >& getUnoTunnelId() ; - //Native methods - CERTCertDBHandle* getCertDb() throw( css::uno::Exception , css::uno::RuntimeException ) ; - void setCertDb( CERTCertDBHandle* aCertDb ) throw( css::uno::Exception , css::uno::RuntimeException ) ; void adoptSymKey( PK11SymKey* aSymKey ) throw( css::uno::Exception , css::uno::RuntimeException ) ; |