summaryrefslogtreecommitdiff
path: root/filter/source/config/cache/typedetection.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'filter/source/config/cache/typedetection.cxx')
-rw-r--r--filter/source/config/cache/typedetection.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/filter/source/config/cache/typedetection.cxx b/filter/source/config/cache/typedetection.cxx
index fa23e96ba126..b5268857ca9b 100644
--- a/filter/source/config/cache/typedetection.cxx
+++ b/filter/source/config/cache/typedetection.cxx
@@ -89,7 +89,7 @@ OUString SAL_CALL TypeDetection::queryTypeByURL(const OUString& sURL)
cache.detectFlatForURL(aURL, lFlatTypes);
if (
- (lFlatTypes.size() < 1 ) &&
+ (lFlatTypes.empty() ) &&
(!cache.isFillState(FilterCache::E_CONTAINS_TYPES))
)
{
@@ -98,7 +98,7 @@ OUString SAL_CALL TypeDetection::queryTypeByURL(const OUString& sURL)
}
// first item is guaranteed as "preferred" one!
- if (lFlatTypes.size() > 0)
+ if (!lFlatTypes.empty())
{
const FlatDetectionInfo& aMatch = *(lFlatTypes.begin());
sType = aMatch.sType;
@@ -426,7 +426,7 @@ OUString SAL_CALL TypeDetection::queryTypeByDescriptor(css::uno::Sequence< css::
// throwing an exception if creation of the might needed input
// stream failed by e.g. an IO exception ...
std::vector<OUString> lUsedDetectors;
- if (lFlatTypes.size()>0)
+ if (!lFlatTypes.empty())
sType = impl_detectTypeFlatAndDeep(stlDescriptor, lFlatTypes, bAllowDeep, lUsedDetectors, sLastChance);
// flat detection failed