summaryrefslogtreecommitdiff
path: root/io
diff options
context:
space:
mode:
Diffstat (limited to 'io')
-rw-r--r--io/source/acceptor/acceptor.cxx9
-rw-r--r--io/source/connector/connector.cxx12
2 files changed, 1 insertions, 20 deletions
diff --git a/io/source/acceptor/acceptor.cxx b/io/source/acceptor/acceptor.cxx
index b6ef0a33556f..939eb436e402 100644
--- a/io/source/acceptor/acceptor.cxx
+++ b/io/source/acceptor/acceptor.cxx
@@ -124,10 +124,6 @@ namespace io_acceptor
IllegalArgumentException,
RuntimeException, std::exception)
{
- OSL_TRACE(
- "acceptor %s\n",
- OUStringToOString(
- sConnectionDescription, RTL_TEXTENCODING_ASCII_US).getStr());
// if there is a thread alread accepting in this object, throw an exception.
struct BeingInAccept guard( &m_bInAccept, sConnectionDescription );
@@ -205,11 +201,6 @@ namespace io_acceptor
else
{
OUString delegatee = "com.sun.star.connection.Acceptor." + aDesc.getName();
-
- OSL_TRACE(
- "trying to get service %s\n",
- OUStringToOString(
- delegatee, RTL_TEXTENCODING_ASCII_US).getStr());
_xAcceptor.set(_xSMgr->createInstanceWithContext(delegatee, _xCtx), UNO_QUERY);
if(!_xAcceptor.is())
diff --git a/io/source/connector/connector.cxx b/io/source/connector/connector.cxx
index 695326718c25..d12296295700 100644
--- a/io/source/connector/connector.cxx
+++ b/io/source/connector/connector.cxx
@@ -73,11 +73,6 @@ namespace stoc_connector
Reference< XConnection > SAL_CALL OConnector::connect( const OUString& sConnectionDescription )
throw( NoConnectException, ConnectionSetupException, RuntimeException, std::exception)
{
- OSL_TRACE(
- "connector %s\n",
- OUStringToOString(
- sConnectionDescription, RTL_TEXTENCODING_ASCII_US).getStr());
-
// split string into tokens
try
{
@@ -143,13 +138,8 @@ namespace stoc_connector
}
else
{
- OUString delegatee("com.sun.star.connection.Connector.");
- delegatee += aDesc.getName();
+ OUString delegatee= "com.sun.star.connection.Connector." + aDesc.getName();
- OSL_TRACE(
- "connector: trying to get service %s\n",
- OUStringToOString(
- delegatee, RTL_TEXTENCODING_ASCII_US).getStr());
Reference<XConnector> xConnector(
_xSMgr->createInstanceWithContext(delegatee, _xCtx), UNO_QUERY );