From 1f2fd91bf1acc4b6e0b102738c319ce074b7faf7 Mon Sep 17 00:00:00 2001 From: Takeshi Abe Date: Tue, 20 Dec 2011 12:06:48 +0900 Subject: catch exception by constant reference --- linguistic/source/dlistimp.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'linguistic/source/dlistimp.cxx') diff --git a/linguistic/source/dlistimp.cxx b/linguistic/source/dlistimp.cxx index bec538d6c706..ac4f143847a7 100644 --- a/linguistic/source/dlistimp.cxx +++ b/linguistic/source/dlistimp.cxx @@ -909,10 +909,9 @@ static sal_Bool IsVers2OrNewer( const String& rFileURL, sal_uInt16& nLng, sal_Bo A2OU( "com.sun.star.ucb.SimpleFileAccess" ) ), uno::UNO_QUERY_THROW ); xStream = xAccess->openFileRead( rFileURL ); } - catch (uno::Exception & e) + catch (const uno::Exception &) { DBG_ASSERT( 0, "failed to get input stream" ); - (void) e; } DBG_ASSERT( xStream.is(), "failed to get stream for read" ); if (!xStream.is()) -- cgit