From ed373ea7efd34ca6baab8ddbf809e6f2a06f1a9e Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 15 Jan 2016 09:36:20 +0200 Subject: loplugin:unusedmethods unused return value in include/xmloff Change-Id: I6615a467152a50e9c65f04fd0d6c8cc128517bdb --- xmloff/source/script/XMLEventsImportContext.cxx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'xmloff/source/script/XMLEventsImportContext.cxx') diff --git a/xmloff/source/script/XMLEventsImportContext.cxx b/xmloff/source/script/XMLEventsImportContext.cxx index e9dfc24c0a91..3e60c2d5d769 100644 --- a/xmloff/source/script/XMLEventsImportContext.cxx +++ b/xmloff/source/script/XMLEventsImportContext.cxx @@ -157,7 +157,7 @@ void XMLEventsImportContext::SetEvents( } } -bool XMLEventsImportContext::GetEventSequence( +void XMLEventsImportContext::GetEventSequence( const OUString& rName, Sequence & rSequence ) { @@ -176,10 +176,7 @@ bool XMLEventsImportContext::GetEventSequence( if (aIter != aCollectEvents.end()) { rSequence = aIter->second; - return true; } - - return false; } void XMLEventsImportContext::AddEventValues( -- cgit