diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-08-15 19:33:55 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-08-16 14:01:07 +0200 |
commit | 4f5d694e5840b0b9bda15dc120e8b07d18d4cbd0 (patch) | |
tree | fdd291c8ea977e6ee51c111ec3da7a5b3582cfe9 /package/inc | |
parent | c767e78e629721771c1b9b16b647963ef652732d (diff) |
tdf#158556 ByteGrabber does not need a mutex
it is only used from one place, and that place already locks a mutex
around all usage
Change-Id: I85a8d89220bee7806db5457d69cfcf2f11c1734d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/171947
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'package/inc')
-rw-r--r-- | package/inc/ByteGrabber.hxx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/package/inc/ByteGrabber.hxx b/package/inc/ByteGrabber.hxx index 4a93398a7704..075ff56d142d 100644 --- a/package/inc/ByteGrabber.hxx +++ b/package/inc/ByteGrabber.hxx @@ -29,8 +29,6 @@ namespace com::sun::star { } class ByteGrabber final { - std::mutex m_aMutex; - css::uno::Reference < css::io::XInputStream > xStream; css::uno::Reference < css::io::XSeekable > xSeek; css::uno::Sequence < sal_Int8 > aSequence; |