From 307be8c9cedb32560419bbb09e029b906e5f1acd Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 30 May 2017 13:45:50 +0200 Subject: clang-tidy readability-redundant-control-flow Change-Id: I832f7ef0f1bd55e365db7e49823fe8bc30390c04 Reviewed-on: https://gerrit.libreoffice.org/38215 Tested-by: Jenkins Reviewed-by: Noel Grandin --- io/source/stm/opipe.cxx | 3 --- 1 file changed, 3 deletions(-) (limited to 'io/source') diff --git a/io/source/stm/opipe.cxx b/io/source/stm/opipe.cxx index c95657d1b27f..ccc3214cc8a5 100644 --- a/io/source/stm/opipe.cxx +++ b/io/source/stm/opipe.cxx @@ -227,7 +227,6 @@ void OPipeImpl::closeInput() m_conditionBytesAvail.set(); setSuccessor( Reference< XConnectable > () ); - return; } @@ -278,7 +277,6 @@ void OPipeImpl::writeBytes(const Sequence< sal_Int8 >& aData) void OPipeImpl::flush() { // nothing to do for a pipe - return; } void OPipeImpl::closeOutput() @@ -288,7 +286,6 @@ void OPipeImpl::closeOutput() m_bOutputStreamClosed = true; m_conditionBytesAvail.set(); setPredecessor( Reference < XConnectable > () ); - return; } -- cgit