From 0ce0c369aa8880dff9fe874ba85ec6f52ee37ddf Mon Sep 17 00:00:00 2001 From: Alexander Wilms Date: Sat, 22 Feb 2014 21:20:15 +0100 Subject: Remove unneccessary comments MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I939160ae72fecbe3d4a60ce755730bd4c38497fb Reviewed-on: https://gerrit.libreoffice.org/8182 Reviewed-by: Caolán McNamara Tested-by: Caolán McNamara --- io/source/stm/odata.cxx | 4 ++-- io/source/stm/omark.cxx | 4 ++-- io/source/stm/opump.cxx | 22 +++++++++++----------- io/test/stm/marktest.cxx | 2 +- io/test/testcomponent.cxx | 2 +- 5 files changed, 17 insertions(+), 17 deletions(-) (limited to 'io') diff --git a/io/source/stm/odata.cxx b/io/source/stm/odata.cxx index adeb46d5fadf..94799b77e6a4 100644 --- a/io/source/stm/odata.cxx +++ b/io/source/stm/odata.cxx @@ -894,7 +894,7 @@ Sequence ODataOutputStream_getSupportedServiceNames(void) return aRet; } -//-------------------------------------- + struct equalObjectContainer_Impl { bool operator()(const Reference< XInterface > & s1, @@ -904,7 +904,7 @@ struct equalObjectContainer_Impl } }; -//----------------------------------------------------------------------------- + struct hashObjectContainer_Impl { size_t operator()(const Reference< XInterface > & xRef) const diff --git a/io/source/stm/omark.cxx b/io/source/stm/omark.cxx index 7f0261e40b41..af476040d272 100644 --- a/io/source/stm/omark.cxx +++ b/io/source/stm/omark.cxx @@ -471,11 +471,11 @@ Sequence OMarkableOutputStream_getSupportedServiceNames(void) -//------------------------------------------------ + // // XMarkableInputStream // -//------------------------------------------------ + class OMarkableInputStream : public WeakImplHelper5 diff --git a/io/source/stm/opump.cxx b/io/source/stm/opump.cxx index 93b4f51e49ed..35d1233e5ad5 100644 --- a/io/source/stm/opump.cxx +++ b/io/source/stm/opump.cxx @@ -303,7 +303,7 @@ void Pump::run() } } -// ------------------------------------------------------------ + /* * XConnectable @@ -315,7 +315,7 @@ void Pump::setPredecessor( const Reference< XConnectable >& xPred ) throw() m_xPred = xPred; } -// ------------------------------------------------------------ + Reference< XConnectable > Pump::getPredecessor() throw() { @@ -323,7 +323,7 @@ Reference< XConnectable > Pump::getPredecessor() throw() return m_xPred; } -// ------------------------------------------------------------ + void Pump::setSuccessor( const Reference< XConnectable >& xSucc ) throw() { @@ -331,7 +331,7 @@ void Pump::setSuccessor( const Reference< XConnectable >& xSucc ) throw() m_xSucc = xSucc; } -// ------------------------------------------------------------ + Reference< XConnectable > Pump::getSuccessor() throw() { @@ -339,7 +339,7 @@ Reference< XConnectable > Pump::getSuccessor() throw() return m_xSucc; } -// ----------------------------------------------------------------- + /* * XActiveDataControl @@ -350,14 +350,14 @@ void Pump::addListener( const Reference< XStreamListener >& xListener ) throw() m_cnt.addInterface( xListener ); } -// ------------------------------------------------------------ + void Pump::removeListener( const Reference< XStreamListener >& xListener ) throw() { m_cnt.removeInterface( xListener ); } -// ------------------------------------------------------------ + void Pump::start() throw( RuntimeException ) { @@ -377,7 +377,7 @@ void Pump::start() throw( RuntimeException ) } } -// ------------------------------------------------------------ + void Pump::terminate() throw() { @@ -391,7 +391,7 @@ void Pump::terminate() throw() fireClose(); } -// ------------------------------------------------------------ + /* * XActiveDataSink @@ -407,7 +407,7 @@ void Pump::setInputStream( const Reference< XInputStream >& xStream ) throw() // data transfer starts in XActiveDataControl::start } -// ------------------------------------------------------------ + Reference< XInputStream > Pump::getInputStream() throw() { @@ -415,7 +415,7 @@ Reference< XInputStream > Pump::getInputStream() throw() return m_xInput; } -// ------------------------------------------------------------ + /* * XActiveDataSource diff --git a/io/test/stm/marktest.cxx b/io/test/stm/marktest.cxx index 6730d2d49c85..6ac56583619c 100644 --- a/io/test/stm/marktest.cxx +++ b/io/test/stm/marktest.cxx @@ -400,7 +400,7 @@ OUString OMarkableOutputStreamTest_getImplementationName() throw () -//----------------------------------------------------- + // Input stream diff --git a/io/test/testcomponent.cxx b/io/test/testcomponent.cxx index e0a63c5d4173..260c723a1036 100644 --- a/io/test/testcomponent.cxx +++ b/io/test/testcomponent.cxx @@ -18,7 +18,7 @@ */ -//------------------------------------------------------ + // testcomponent - Loads a service and its testcomponent from dlls performs a test. // Expands the dll-names depending on the actual environment. // Example : testcomponent com.sun.star.io.Pipe stm -- cgit