From 72f6071351e52175beb413eaba6b47fd3df26abd Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 14 May 2014 10:06:04 +0200 Subject: connectivity: remove SAL_INFO's that only mark function entry Change-Id: If6863d18dac6ee0364c98d255e0cf55748ea4bf9 --- connectivity/source/drivers/mork/MPreparedStatement.cxx | 9 --------- connectivity/source/drivers/mork/MResultSet.cxx | 5 ----- 2 files changed, 14 deletions(-) (limited to 'connectivity') diff --git a/connectivity/source/drivers/mork/MPreparedStatement.cxx b/connectivity/source/drivers/mork/MPreparedStatement.cxx index fa9e7d886dce..02aa4bfea4ad 100644 --- a/connectivity/source/drivers/mork/MPreparedStatement.cxx +++ b/connectivity/source/drivers/mork/MPreparedStatement.cxx @@ -81,8 +81,6 @@ void SAL_CALL OPreparedStatement::disposing() OCommonStatement::StatementType OPreparedStatement::parseSql( const OUString& sql , sal_Bool bAdjusted ) throw ( ::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException ) { - SAL_INFO("connectivity.mork", "=> OPreparedStatement::parseSql()" ); - StatementType eStatementType = OCommonStatement::parseSql( sql, bAdjusted ); if ( eStatementType != eSelect ) return eStatementType; @@ -148,8 +146,6 @@ Any SAL_CALL OPreparedStatement::queryInterface( const Type & rType ) throw(Runt Reference< XResultSetMetaData > SAL_CALL OPreparedStatement::getMetaData( ) throw(SQLException, RuntimeException, std::exception) { - SAL_INFO("connectivity.mork", "=> OPreparedStatement::getMetaData()" ); - ::osl::MutexGuard aGuard( m_aMutex ); checkDisposed(OCommonStatement_IBASE::rBHelper.bDisposed); @@ -168,7 +164,6 @@ Reference< XResultSetMetaData > SAL_CALL OPreparedStatement::getMetaData( ) thr sal_Bool SAL_CALL OPreparedStatement::execute( ) throw(SQLException, RuntimeException, std::exception) { - SAL_INFO("connectivity.mork", "=> OPreparedStatement::execute()" ); ::osl::MutexGuard aGuard( m_aMutex ); checkDisposed(OCommonStatement_IBASE::rBHelper.bDisposed); @@ -179,8 +174,6 @@ sal_Bool SAL_CALL OPreparedStatement::execute( ) throw(SQLException, RuntimeExc sal_Int32 SAL_CALL OPreparedStatement::executeUpdate( ) throw(SQLException, RuntimeException, std::exception) { - SAL_INFO("connectivity.mork", "=> OPreparedStatement::executeUpdate()" ); - ::dbtools::throwFeatureNotImplementedException( "XStatement::executeUpdate", *this ); return 0; } @@ -207,8 +200,6 @@ Reference< XConnection > SAL_CALL OPreparedStatement::getConnection( ) throw(SQ Reference< XResultSet > SAL_CALL OPreparedStatement::executeQuery( ) throw(SQLException, RuntimeException, std::exception) { - SAL_INFO("connectivity.mork", "=> OPreparedStatement::executeQuery()" ); - ::osl::MutexGuard aGuard( m_aMutex ); OSL_TRACE("In: OPreparedStatement::executeQuery" ); checkDisposed(OCommonStatement_IBASE::rBHelper.bDisposed); diff --git a/connectivity/source/drivers/mork/MResultSet.cxx b/connectivity/source/drivers/mork/MResultSet.cxx index c665b27c87d5..c85e8426b41c 100644 --- a/connectivity/source/drivers/mork/MResultSet.cxx +++ b/connectivity/source/drivers/mork/MResultSet.cxx @@ -333,7 +333,6 @@ bool OResultSet::fetchCurrentRow( ) throw(SQLException, RuntimeException) bool OResultSet::pushCard(sal_uInt32 /*cardNumber*/) throw(SQLException, RuntimeException) { - SAL_INFO("connectivity.mork", "=> OResultSet::pushCard()" ); return true; /* if (cardNumber == 0) @@ -363,8 +362,6 @@ bool OResultSet::pushCard(sal_uInt32 /*cardNumber*/) throw(SQLException, Runtime bool OResultSet::fetchRow(sal_Int32 cardNumber,bool bForceReload) throw(SQLException, RuntimeException) { - SAL_INFO("connectivity.mork", "=> OResultSet::fetchRow()" ); - OSL_TRACE("fetchRow, cardNumber = %u", cardNumber ); if (!bForceReload) { @@ -1501,8 +1498,6 @@ sal_Int32 OResultSet::deletedCount() bool OResultSet::seekRow( eRowPosition pos, sal_Int32 nOffset ) { - SAL_INFO("connectivity.mork", "=> OResultSet::seekRow()" ); - ResultSetEntryGuard aGuard( *this ); if ( !m_pKeySet.is() ) m_pStatement->getOwnConnection()->throwSQLException( STR_ILLEGAL_MOVEMENT, *this ); -- cgit