diff --git a/include/comphelper/stl_types.hxx b/include/comphelper/stl_types.hxx index 5ab72307dbf5..8ed702abc25a 100644 --- a/include/comphelper/stl_types.hxx +++ b/include/comphelper/stl_types.hxx @@ -118,19 +118,6 @@ public: return !!(lhs.Name == rhs); } }; -//------------------------------------------------------------------------ -class UStringMixHash -{ - sal_Bool m_bCaseSensitive; - -public: - UStringMixHash(sal_Bool bCaseSensitive = sal_True):m_bCaseSensitive(bCaseSensitive){} - size_t operator() (const OUString& rStr) const - { - return m_bCaseSensitive ? rStr.hashCode() : rStr.toAsciiUpperCase().hashCode(); - } - sal_Bool isCaseSensitive() const {return m_bCaseSensitive;} -}; //===================================================================== //= OInterfaceCompare