summaryrefslogtreecommitdiff
path: root/comphelper/source/xml/attributelist.cxx
diff options
context:
space:
mode:
authorElton Chung <elton@layerjet.com>2012-02-25 13:52:32 +0800
committerMichael Meeks <michael.meeks@suse.com>2012-02-25 20:33:57 +0000
commitba8919e8129b5e8da112ad4f1d11bb39096c1e0e (patch)
tree09c421269f3332bafac4cfb6297f7982443f73bb /comphelper/source/xml/attributelist.cxx
parent0333d2101acf36c9f44e5cc51ff6964d8a98920d (diff)
Remove unused code
Diffstat (limited to 'comphelper/source/xml/attributelist.cxx')
-rw-r--r--comphelper/source/xml/attributelist.cxx25
1 files changed, 0 insertions, 25 deletions
diff --git a/comphelper/source/xml/attributelist.cxx b/comphelper/source/xml/attributelist.cxx
index a31ea94fa7a2..5fbb81ffb766 100644
--- a/comphelper/source/xml/attributelist.cxx
+++ b/comphelper/source/xml/attributelist.cxx
@@ -131,31 +131,6 @@ void AttributeList::AddAttribute( const OUString &sName ,
m_pImpl->vecAttribute.push_back( TagAttribute_Impl( sName , sType , sValue ) );
}
-void AttributeList::Clear()
-{
- m_pImpl->vecAttribute.clear();
-
- OSL_ENSURE( ! getLength(), "Length > 0 after AttributeList::Clear!");
-}
-
-void AttributeList::AppendAttributeList( const uno::Reference< ::com::sun::star::xml::sax::XAttributeList > &r )
-{
- OSL_ENSURE( r.is(), "r isn't!" );
-
- sal_Int32 nMax = r->getLength();
- sal_Int32 nTotalSize = m_pImpl->vecAttribute.size() + nMax;
- m_pImpl->vecAttribute.reserve( nTotalSize );
-
- for( sal_Int16 i = 0 ; i < nMax ; i ++ ) {
- m_pImpl->vecAttribute.push_back( TagAttribute_Impl(
- r->getNameByIndex( i ) ,
- r->getTypeByIndex( i ) ,
- r->getValueByIndex( i )));
- }
-
- OSL_ENSURE( nTotalSize == getLength(), "nTotalSize != getLength()");
-}
-
} // namespace comphelper
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */