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 --- extensions/source/logging/plaintextformatter.cxx | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'extensions/source/logging/plaintextformatter.cxx') diff --git a/extensions/source/logging/plaintextformatter.cxx b/extensions/source/logging/plaintextformatter.cxx index 2f4e0a6eb381..7333c064d9df 100644 --- a/extensions/source/logging/plaintextformatter.cxx +++ b/extensions/source/logging/plaintextformatter.cxx @@ -79,17 +79,17 @@ namespace logging //==================================================================== //= PlainTextFormatter - implementation //==================================================================== - //-------------------------------------------------------------------- + PlainTextFormatter::PlainTextFormatter() { } - //-------------------------------------------------------------------- + PlainTextFormatter::~PlainTextFormatter() { } - //-------------------------------------------------------------------- + OUString SAL_CALL PlainTextFormatter::getHead( ) throw (RuntimeException) { OUStringBuffer aHeader; @@ -106,7 +106,7 @@ namespace logging return aHeader.makeStringAndClear(); } - //-------------------------------------------------------------------- + OUString SAL_CALL PlainTextFormatter::format( const LogRecord& _rRecord ) throw (RuntimeException) { char buffer[ 30 ]; @@ -144,7 +144,7 @@ namespace logging return aLogEntry.makeStringAndClear(); } - //-------------------------------------------------------------------- + OUString SAL_CALL PlainTextFormatter::getTail( ) throw (RuntimeException) { // no tail @@ -156,25 +156,25 @@ namespace logging return cppu::supportsService(this, _rServiceName); } - //-------------------------------------------------------------------- + OUString SAL_CALL PlainTextFormatter::getImplementationName() throw(RuntimeException) { return getImplementationName_static(); } - //-------------------------------------------------------------------- + Sequence< OUString > SAL_CALL PlainTextFormatter::getSupportedServiceNames() throw(RuntimeException) { return getSupportedServiceNames_static(); } - //-------------------------------------------------------------------- + OUString SAL_CALL PlainTextFormatter::getImplementationName_static() { return OUString( "com.sun.star.comp.extensions.PlainTextFormatter" ); } - //-------------------------------------------------------------------- + Sequence< OUString > SAL_CALL PlainTextFormatter::getSupportedServiceNames_static() { Sequence< OUString > aServiceNames(1); @@ -182,13 +182,13 @@ namespace logging return aServiceNames; } - //-------------------------------------------------------------------- + Reference< XInterface > PlainTextFormatter::Create( const Reference< XComponentContext >& ) { return *( new PlainTextFormatter ); } - //-------------------------------------------------------------------- + void createRegistryInfo_PlainTextFormatter() { static OAutoRegistration< PlainTextFormatter > aAutoRegistration; -- cgit