summaryrefslogtreecommitdiff
path: root/ucb
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-09-29 12:40:47 +0200
committerNoel Grandin <noel@peralex.com>2015-09-29 15:08:43 +0200
commit34180700b2686c97cdce0b52ca9578a41a153035 (patch)
tree073f3753e4483f30efa3c7c769f23971e6a046d5 /ucb
parente710170d906fcb248a5e4ff5a3a90cbf0e20003d (diff)
loplugin:removeunusedmethods, remove unused stuff
Change-Id: I35456b2a3ad2a84a1d045f09cdfb29e4c19b8350
Diffstat (limited to 'ucb')
-rw-r--r--ucb/source/inc/regexpmap.hxx11
1 files changed, 0 insertions, 11 deletions
diff --git a/ucb/source/inc/regexpmap.hxx b/ucb/source/inc/regexpmap.hxx
index d1c68391d873..606423852bf6 100644
--- a/ucb/source/inc/regexpmap.hxx
+++ b/ucb/source/inc/regexpmap.hxx
@@ -449,8 +449,6 @@ public:
const_iterator end() const;
- bool empty() const;
-
size_type size() const;
Val const * map(OUString const & rString,
@@ -604,15 +602,6 @@ typename RegexpMap< Val >::const_iterator RegexpMap< Val >::end() const
}
template< typename Val >
-bool RegexpMap< Val >::empty() const
-{
- return !m_pImpl->m_pDefault
- && m_pImpl->m_aList[Regexp::KIND_PREFIX].empty()
- && m_pImpl->m_aList[Regexp::KIND_AUTHORITY].empty()
- && m_pImpl->m_aList[Regexp::KIND_DOMAIN].empty();
-}
-
-template< typename Val >
typename RegexpMap< Val >::size_type RegexpMap< Val >::size() const
{
return (m_pImpl->m_pDefault ? 1 : 0)