diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-06-08 20:04:28 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-06-09 12:08:15 +0200 |
commit | 485300f9aef53f63e24339422b1dd2bfa12d543e (patch) | |
tree | 3e3f5aca8dbbade3ed18a68da0b57ace4cc2bee5 /sax | |
parent | 0e1a0ecffa055062a21815ab13eb6e4f8c769b8f (diff) |
loplugin:unusedmethods
Change-Id: Ib89ab59f7ad7e90b2a44ddd122176cde904fba4d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135520
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sax')
-rw-r--r-- | sax/source/tools/converter.cxx | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/sax/source/tools/converter.cxx b/sax/source/tools/converter.cxx index 297070a670dc..2abfe35750c2 100644 --- a/sax/source/tools/converter.cxx +++ b/sax/source/tools/converter.cxx @@ -1065,16 +1065,6 @@ static bool convertDurationHelper(double& rfTime, V pStr) /** convert ISO "duration" string to double; negative durations allowed */ bool Converter::convertDuration(double& rfTime, - std::u16string_view rString) -{ - std::u16string_view aTrimmed = trim(rString); - const sal_Unicode* pStr = aTrimmed.data(); - - return convertDurationHelper(rfTime, pStr); -} - -/** convert ISO "duration" string to double; negative durations allowed */ -bool Converter::convertDuration(double& rfTime, std::string_view rString) { std::string_view aTrimmed = trim(rString); |