Skip to content

Commit

Permalink
review comment handling
Browse files Browse the repository at this point in the history
  • Loading branch information
pandurangpatil committed Mar 8, 2024
1 parent 31bf688 commit 18cdce8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ object TimeMetric {
* @return
* \- Formatted double value in string.
*/
private def doubleFormatter(value: Double): String = s"${String.format("%.2f", value)}"
private def doubleFormatter(value: Double): String = s"${"%.2f".formatLocal(java.util.Locale.US, value)}"

/** Get current time by initialising internal latest data time tracker.
* @return
Expand Down

0 comments on commit 18cdce8

Please sign in to comment.