summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scripting/source/provider/MasterScriptProviderFactory.cxx7
1 files changed, 2 insertions, 5 deletions
diff --git a/scripting/source/provider/MasterScriptProviderFactory.cxx b/scripting/source/provider/MasterScriptProviderFactory.cxx
index ed9e0550fef8..af4312e316d0 100644
--- a/scripting/source/provider/MasterScriptProviderFactory.cxx
+++ b/scripting/source/provider/MasterScriptProviderFactory.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: MasterScriptProviderFactory.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: vg $ $Date: 2004-12-23 11:50:28 $
+ * last change: $Author: rt $ $Date: 2005-01-27 15:32:17 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -85,12 +85,10 @@ MasterScriptProviderFactory::MasterScriptProviderFactory(
Reference< XComponentContext > const & xComponentContext )
: m_xComponentContext( xComponentContext ), m_MSPList(0)
{
- OSL_TRACE("MasterScriptProviderFactory is being created!");
}
MasterScriptProviderFactory::~MasterScriptProviderFactory()
{
- OSL_TRACE("MasterScriptProviderFactory is being destructed!");
if (m_MSPList) delete m_MSPList;
}
@@ -103,7 +101,6 @@ MasterScriptProviderFactory::~MasterScriptProviderFactory()
Reference< provider::XScriptProvider > SAL_CALL
MasterScriptProviderFactory::createScriptProvider( const Any& context ) throw ( lang::IllegalArgumentException, RuntimeException)
{
- OSL_TRACE("In MasterScriptProviderFactory::createScriptProvider()" );
Reference< provider::XScriptProvider > xMsp( getActiveMSPList().createMSP( context ), UNO_QUERY_THROW );
return xMsp;
}