summaryrefslogtreecommitdiff
path: root/svl
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2017-11-19 01:38:22 +0900
committerEike Rathke <erack@redhat.com>2017-11-20 14:01:44 +0100
commit14f351529e5f6282b1017d28671930d6142f4ce5 (patch)
tree9425e90bb869f9ed05bcebd621059eeb198e4b87 /svl
parent13de75274b727428355eefd55176277a5f891c47 (diff)
cosmetics: Drop duplicate semicolon
Change-Id: I96d2ffb903f9ed15070572552c9564b5089df12f Reviewed-on: https://gerrit.libreoffice.org/44914 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Eike Rathke <erack@redhat.com>
Diffstat (limited to 'svl')
-rw-r--r--svl/source/numbers/numfmuno.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svl/source/numbers/numfmuno.cxx b/svl/source/numbers/numfmuno.cxx
index 8b09da2f7fd3..417fdf3e48c1 100644
--- a/svl/source/numbers/numfmuno.cxx
+++ b/svl/source/numbers/numfmuno.cxx
@@ -152,7 +152,7 @@ sal_Int32 SAL_CALL SvNumberFormatterServiceObj::detectNumberFormat( sal_Int32 nK
sal_uInt32 nUKey = nKey;
double fValue = 0.0;
if ( !pFormatter->IsNumberFormat(aString, nUKey, fValue) )
- throw util::NotNumericException();;
+ throw util::NotNumericException();
return nUKey;
}
@@ -168,7 +168,7 @@ double SAL_CALL SvNumberFormatterServiceObj::convertStringToNumber( sal_Int32 nK
sal_uInt32 nUKey = nKey;
double fValue = 0.0;
if ( !pFormatter->IsNumberFormat(aString, nUKey, fValue) )
- throw util::NotNumericException();;
+ throw util::NotNumericException();
return fValue;
}