diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2015-06-13 10:09:21 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-06-15 13:34:14 +0200 |
commit | 4ea281a3ccb5bd21e1808d8cb127a91a1bb72691 (patch) | |
tree | 183a2ab634d770b7ef777323fa6851fc38e14011 /scripting | |
parent | 943f4b4ff1c524c514584c459b899ba3e9dfb71f (diff) |
cppcheck:redundantAssignment
Change-Id: I1167d0ce6b6f6e48309d0551c1d2a283d79546a7
Diffstat (limited to 'scripting')
-rw-r--r-- | scripting/source/stringresource/stringresource.cxx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/scripting/source/stringresource/stringresource.cxx b/scripting/source/stringresource/stringresource.cxx index 2b7fafe9d460..542f33188111 100644 --- a/scripting/source/stringresource/stringresource.cxx +++ b/scripting/source/stringresource/stringresource.cxx @@ -1977,11 +1977,8 @@ bool StringResourcePersistenceImpl::implReadPropertiesFile if( !xInputStream.is() || pLocaleItem == NULL ) return false; - bool bSuccess = false; Reference< io::XTextInputStream2 > xTextInputStream = io::TextInputStream::create( m_xContext ); - bSuccess = true; - xTextInputStream->setInputStream( xInputStream ); OUString aEncodingStr = OUString::createFromAscii @@ -2092,7 +2089,7 @@ bool StringResourcePersistenceImpl::implReadPropertiesFile rIndexMap[ aResourceID ] = pLocaleItem->m_nNextIndex++; } - return bSuccess; + return true; } |