diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-03-06 15:09:25 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-03-06 16:48:15 +0000 |
commit | 363512d39ba1543b7e91af1d59dadb5378da7649 (patch) | |
tree | 958736abb5e772ea3d516465adfd51ce340853f9 /sax | |
parent | c0f69aa125081c31ca2b79e9e29e13bc91a21be7 (diff) |
clang-tidy dead-store
Change-Id: I842114880c43dfcc342b6255b7d17befb905bccb
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148345
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sax')
-rw-r--r-- | sax/source/fastparser/fastparser.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sax/source/fastparser/fastparser.cxx b/sax/source/fastparser/fastparser.cxx index aae3c1162d47..06e2fb1e3e92 100644 --- a/sax/source/fastparser/fastparser.cxx +++ b/sax/source/fastparser/fastparser.cxx @@ -1565,7 +1565,7 @@ static void NormalizeURI( OUString& rName ) // try OASIS + W3 URI normalization bool bSuccess = NormalizeOasisURN( rName ); if( ! bSuccess ) - bSuccess = NormalizeW3URI( rName ); + NormalizeW3URI( rName ); } constexpr OUStringLiteral XML_URI_W3_PREFIX(u"http://www.w3.org/"); |