summaryrefslogtreecommitdiff
path: root/extensions/source/logging/plaintextformatter.cxx
diff options
context:
space:
mode:
authorAlexander Wilms <f.alexander.wilms@gmail.com>2014-02-22 21:20:15 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-02-23 03:38:49 +0000
commit0ce0c369aa8880dff9fe874ba85ec6f52ee37ddf (patch)
tree5024cba9f9ea5e3b23ea26025323f6aef39488d0 /extensions/source/logging/plaintextformatter.cxx
parentb81ac16e65b311d6e43c05c22c65d2040c9d7e04 (diff)
Remove unneccessary comments
Change-Id: I939160ae72fecbe3d4a60ce755730bd4c38497fb Reviewed-on: https://gerrit.libreoffice.org/8182 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'extensions/source/logging/plaintextformatter.cxx')
-rw-r--r--extensions/source/logging/plaintextformatter.cxx22
1 files changed, 11 insertions, 11 deletions
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;