From ba80f637b82ef5df7c650ec301ca9ebb5f678f44 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 18 Oct 2018 14:09:32 +0200 Subject: clang-tidy modernize-redundant-void-arg Change-Id: Ia25ac2e40f29e5b766a4c5c013fb53274196f656 Reviewed-on: https://gerrit.libreoffice.org/61934 Tested-by: Jenkins Reviewed-by: Noel Grandin --- unotools/source/ucbhelper/ucblockbytes.cxx | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to 'unotools/source') diff --git a/unotools/source/ucbhelper/ucblockbytes.cxx b/unotools/source/ucbhelper/ucblockbytes.cxx index 8f8343a56870..04bb3225a515 100644 --- a/unotools/source/ucbhelper/ucblockbytes.cxx +++ b/unotools/source/ucbhelper/ucblockbytes.cxx @@ -342,10 +342,7 @@ public: const Reference< XStream >& aStream ) override; - virtual Reference SAL_CALL - getStream ( - void - ) override + virtual Reference SAL_CALL getStream () override { osl::MutexGuard aGuard(m_aMutex); return m_xStream; @@ -371,10 +368,7 @@ public: const Reference &rxInputStream ) override; - virtual Reference SAL_CALL - getInputStream ( - void - ) override + virtual Reference SAL_CALL getInputStream() override { osl::MutexGuard aGuard(m_aMutex); return m_xStream; -- cgit