diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-08-08 13:01:54 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-08-08 20:56:30 +0200 |
commit | 61d49afadb2badc7572b04c73ee682afde1d2e7b (patch) | |
tree | ab72148a48dc97ef4fcf01218358e5e75b72a835 /xmlsecurity | |
parent | fac539889e32e5e47ca6b6da0a588abbe4cbe066 (diff) |
loplugin:unusedmethods
Change-Id: Id66cf12e3a59aeed1b9a7a111b841e30b248635b
Reviewed-on: https://gerrit.libreoffice.org/40876
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Jochen Nitschke <j.nitschke+logerrit@ok.de>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'xmlsecurity')
-rw-r--r-- | xmlsecurity/inc/xmlsec/xmlelementwrapper_xmlsecimpl.hxx | 1 | ||||
-rw-r--r-- | xmlsecurity/source/xmlsec/xmlelementwrapper_xmlsecimpl.cxx | 14 |
2 files changed, 0 insertions, 15 deletions
diff --git a/xmlsecurity/inc/xmlsec/xmlelementwrapper_xmlsecimpl.hxx b/xmlsecurity/inc/xmlsec/xmlelementwrapper_xmlsecimpl.hxx index 1967370a3928..04bc35c5bbb0 100644 --- a/xmlsecurity/inc/xmlsec/xmlelementwrapper_xmlsecimpl.hxx +++ b/xmlsecurity/inc/xmlsec/xmlelementwrapper_xmlsecimpl.hxx @@ -80,7 +80,6 @@ public: * pNode - the libxml2 node wrapped by this object */ xmlNodePtr getNativeElement( ) const { return m_pElement;} - void setNativeElement(const xmlNodePtr pNode); }; /// @throws css::uno::RuntimeException diff --git a/xmlsecurity/source/xmlsec/xmlelementwrapper_xmlsecimpl.cxx b/xmlsecurity/source/xmlsec/xmlelementwrapper_xmlsecimpl.cxx index 8db182de43fc..0cdea05f4523 100644 --- a/xmlsecurity/source/xmlsec/xmlelementwrapper_xmlsecimpl.cxx +++ b/xmlsecurity/source/xmlsec/xmlelementwrapper_xmlsecimpl.cxx @@ -93,18 +93,4 @@ cssu::Sequence< OUString > SAL_CALL XMLElementWrapper_XmlSecImpl::getSupportedSe return XMLElementWrapper_XmlSecImpl_getSupportedServiceNames(); } - -void XMLElementWrapper_XmlSecImpl::setNativeElement(const xmlNodePtr pNode) -/****** XMLElementWrapper_XmlSecImpl/setNativeElement ************************* - * - * NAME - * setNativeElement -- Configures the libxml2 node wrapped by this object - * - * INPUTS - * pNode - the new libxml2 node to be wrapped by this object - ******************************************************************************/ -{ - m_pElement = pNode; -} - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |