Replace useless throwNoSuchElementException function
by its straightforward and short content. Change-Id: Ic847f12923e71addf00b7b16546c8168cf3952f5 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157552 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Jenkins
This commit is contained in:
@@ -51,12 +51,6 @@ using namespace ::osl;
|
|||||||
|
|
||||||
constexpr OUStringLiteral SERVICE_SDBC_DRIVER = u"com.sun.star.sdbc.Driver";
|
constexpr OUStringLiteral SERVICE_SDBC_DRIVER = u"com.sun.star.sdbc.Driver";
|
||||||
|
|
||||||
/// @throws NoSuchElementException
|
|
||||||
static void throwNoSuchElementException()
|
|
||||||
{
|
|
||||||
throw NoSuchElementException();
|
|
||||||
}
|
|
||||||
|
|
||||||
class ODriverEnumeration : public ::cppu::WeakImplHelper< XEnumeration >
|
class ODriverEnumeration : public ::cppu::WeakImplHelper< XEnumeration >
|
||||||
{
|
{
|
||||||
friend class OSDBCDriverManager;
|
friend class OSDBCDriverManager;
|
||||||
@@ -98,7 +92,7 @@ sal_Bool SAL_CALL ODriverEnumeration::hasMoreElements( )
|
|||||||
Any SAL_CALL ODriverEnumeration::nextElement( )
|
Any SAL_CALL ODriverEnumeration::nextElement( )
|
||||||
{
|
{
|
||||||
if ( !hasMoreElements() )
|
if ( !hasMoreElements() )
|
||||||
throwNoSuchElementException();
|
throw NoSuchElementException();
|
||||||
|
|
||||||
return Any( *m_aPos++ );
|
return Any( *m_aPos++ );
|
||||||
}
|
}
|
||||||
@@ -518,7 +512,7 @@ Reference< XInterface > SAL_CALL OSDBCDriverManager::getRegisteredObject( const
|
|||||||
MutexGuard aGuard(m_aMutex);
|
MutexGuard aGuard(m_aMutex);
|
||||||
DriverCollection::const_iterator aSearch = m_aDriversRT.find(_rName);
|
DriverCollection::const_iterator aSearch = m_aDriversRT.find(_rName);
|
||||||
if (aSearch == m_aDriversRT.end())
|
if (aSearch == m_aDriversRT.end())
|
||||||
throwNoSuchElementException();
|
throw NoSuchElementException();
|
||||||
|
|
||||||
return aSearch->second;
|
return aSearch->second;
|
||||||
}
|
}
|
||||||
@@ -560,7 +554,7 @@ void SAL_CALL OSDBCDriverManager::revokeObject( const OUString& _rName )
|
|||||||
|
|
||||||
DriverCollection::iterator aSearch = m_aDriversRT.find(_rName);
|
DriverCollection::iterator aSearch = m_aDriversRT.find(_rName);
|
||||||
if (aSearch == m_aDriversRT.end())
|
if (aSearch == m_aDriversRT.end())
|
||||||
throwNoSuchElementException();
|
throw NoSuchElementException();
|
||||||
|
|
||||||
m_aDriversRT.erase(aSearch); // we already have the iterator so we could use it
|
m_aDriversRT.erase(aSearch); // we already have the iterator so we could use it
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user