io/source/stm/odata.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)
New commits: commit 2bf296ddd10f0a56bdf799712bac1ccb10ed8b72 Author: Chris Sherlock <[email protected]> AuthorDate: Mon Jun 13 17:09:08 2022 +1000 Commit: Stephan Bergmann <[email protected]> CommitDate: Tue Jun 21 21:16:26 2022 +0200 io: drop unnecessary cast Change-Id: Iaceab1b85e41dbb2102fe829f7abc2f8e3898a52 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135693 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <[email protected]> diff --git a/io/source/stm/odata.cxx b/io/source/stm/odata.cxx index 754cda450a94..7d39a5835852 100644 --- a/io/source/stm/odata.cxx +++ b/io/source/stm/odata.cxx @@ -25,7 +25,6 @@ #include <cppuhelper/implbase.hxx> #include <cppuhelper/supportsservice.hxx> #include <osl/endian.h> -#include <tools/long.hxx> #include <com/sun/star/io/NotConnectedException.hpp> #include <com/sun/star/io/XObjectInputStream.hpp> @@ -1094,7 +1093,7 @@ Reference< XPersistObject > OObjectInputStream::readObject() { // grow to the right size Reference< XPersistObject > xEmpty; - m_aPersistVector.insert( m_aPersistVector.end(), static_cast<tools::Long>(nId - nSize + 1), xEmpty ); + m_aPersistVector.insert( m_aPersistVector.end(), nId - nSize + 1, xEmpty ); } m_aPersistVector[nId] = xLoadedObj;
