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 --- comphelper/source/misc/documentiologring.cxx | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'comphelper/source/misc/documentiologring.cxx') diff --git a/comphelper/source/misc/documentiologring.cxx b/comphelper/source/misc/documentiologring.cxx index 5c588bbd1540..f9a97f064504 100644 --- a/comphelper/source/misc/documentiologring.cxx +++ b/comphelper/source/misc/documentiologring.cxx @@ -31,7 +31,7 @@ using namespace ::com::sun::star; namespace comphelper { -// ---------------------------------------------------------- + OSimpleLogRing::OSimpleLogRing() : m_aMessages( SIMPLELOGRING_SIZE ) , m_bInitialized( false ) @@ -40,12 +40,12 @@ OSimpleLogRing::OSimpleLogRing() { } -// ---------------------------------------------------------- + OSimpleLogRing::~OSimpleLogRing() { } -// ---------------------------------------------------------- + uno::Sequence< OUString > SAL_CALL OSimpleLogRing::getSupportedServiceNames_static() { uno::Sequence< OUString > aResult( 1 ); @@ -53,32 +53,32 @@ uno::Sequence< OUString > SAL_CALL OSimpleLogRing::getSupportedServiceNames_stat return aResult; } -// ---------------------------------------------------------- + OUString SAL_CALL OSimpleLogRing::getImplementationName_static() { return OUString( "com.sun.star.comp.logging.SimpleLogRing" ); } -// ---------------------------------------------------------- + OUString SAL_CALL OSimpleLogRing::getSingletonName_static() { return OUString( "com.sun.star.logging.DocumentIOLogRing" ); } -// ---------------------------------------------------------- + OUString SAL_CALL OSimpleLogRing::getServiceName_static() { return OUString( "com.sun.star.logging.SimpleLogRing" ); } -// ---------------------------------------------------------- + uno::Reference< uno::XInterface > SAL_CALL OSimpleLogRing::Create( SAL_UNUSED_PARAMETER const uno::Reference< uno::XComponentContext >& ) { return static_cast< cppu::OWeakObject* >( new OSimpleLogRing ); } // XSimpleLogRing -// ---------------------------------------------------------- + void SAL_CALL OSimpleLogRing::logString( const OUString& aMessage ) throw (uno::RuntimeException) { ::osl::MutexGuard aGuard( m_aMutex ); @@ -94,7 +94,7 @@ void SAL_CALL OSimpleLogRing::logString( const OUString& aMessage ) throw (uno:: m_bInitialized = true; } -// ---------------------------------------------------------- + uno::Sequence< OUString > SAL_CALL OSimpleLogRing::getCollectedLog() throw (uno::RuntimeException) { ::osl::MutexGuard aGuard( m_aMutex ); @@ -113,7 +113,7 @@ uno::Sequence< OUString > SAL_CALL OSimpleLogRing::getCollectedLog() throw (uno: } // XInitialization -// ---------------------------------------------------------- + void SAL_CALL OSimpleLogRing::initialize( const uno::Sequence< uno::Any >& aArguments ) throw (uno::Exception, uno::RuntimeException) { ::osl::MutexGuard aGuard( m_aMutex ); -- cgit v1.2.3