From 63de6ba249a0e4349b66442821ad73aff71f25d8 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Wed, 19 Aug 2015 14:04:47 +0200 Subject: There is no css::uno::Sequence in UNO Change-Id: Ibf5095fea20314180a4e002295c89f570d66d45f --- comphelper/source/misc/types.cxx | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'comphelper') diff --git a/comphelper/source/misc/types.cxx b/comphelper/source/misc/types.cxx index 06afb83e4b3c..025000dcb911 100644 --- a/comphelper/source/misc/types.cxx +++ b/comphelper/source/misc/types.cxx @@ -333,18 +333,6 @@ bool compare_impl(const Type& _rType, const void* pData, const Any& _rValue) memcmp(rLeftSeq.getConstArray(), rRightSeq.getConstArray(), rLeftSeq.getLength()) == 0; } } - else if (_rType == cppu::UnoType>::get()) - { - Sequence aTemp; - bConversionSuccess = _rValue >>= aTemp; - if (bConversionSuccess) - { - const Sequence& rLeftSeq = *static_cast*>(pData); - const Sequence& rRightSeq = aTemp; - bRes = rLeftSeq.getLength() == rRightSeq.getLength() && - memcmp(rLeftSeq.getConstArray(), rRightSeq.getConstArray(), rLeftSeq.getLength()) == 0; - } - } else if (_rType == cppu::UnoType>::get()) { Sequence aTemp; -- cgit