summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--filter/source/config/cache/filtercache.cxx8
-rw-r--r--filter/source/config/cache/filtercache.hxx4
2 files changed, 0 insertions, 12 deletions
diff --git a/filter/source/config/cache/filtercache.cxx b/filter/source/config/cache/filtercache.cxx
index a2a0898b354c..ad250376cb5e 100644
--- a/filter/source/config/cache/filtercache.cxx
+++ b/filter/source/config/cache/filtercache.cxx
@@ -85,7 +85,6 @@ FilterCache* FilterCache::clone() const
// if they are needed.
pClone->m_lTypes = m_lTypes;
- pClone->m_lDetectServices = m_lDetectServices;
pClone->m_lFilters = m_lFilters;
pClone->m_lFrameLoaders = m_lFrameLoaders;
pClone->m_lContentHandlers = m_lContentHandlers;
@@ -1008,13 +1007,6 @@ void FilterCache::impl_validateAndOptimize()
OUString sType = pIt->first;
CacheItem aType = pIt->second;
- // create list of all known detect services / frame loader / content handler on demand
- // Because these information are available as type properties!
- OUString sDetectService;
- aType[PROPNAME_DETECTSERVICE ] >>= sDetectService;
- if (!sDetectService.isEmpty())
- impl_resolveItem4TypeRegistration(&m_lDetectServices, sDetectService, sType);
-
// get its registration for file Extensions AND(!) URLPattern ...
// It doesn't matter if these items exists or if our
// used index access create some default ones ...
diff --git a/filter/source/config/cache/filtercache.hxx b/filter/source/config/cache/filtercache.hxx
index eb992482d217..2e82ccff3405 100644
--- a/filter/source/config/cache/filtercache.hxx
+++ b/filter/source/config/cache/filtercache.hxx
@@ -188,10 +188,6 @@ class FilterCache : public BaseLock
mutable CacheItemList m_lTypes;
- /** @short contains all well known detect service with its properties. */
- mutable CacheItemList m_lDetectServices;
-
-
/** @short contains all loaded filters with its properties. */
mutable CacheItemList m_lFilters;