8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9a4d09 commit ce56ec3Copy full SHA for ce56ec3
sqldev/src/main/java/org/utplsql/sqldev/ui/runner/SmartTime.java
@@ -16,6 +16,7 @@
16
package org.utplsql.sqldev.ui.runner;
17
18
import java.text.DecimalFormat;
19
+import java.util.Locale;
20
21
public class SmartTime {
22
private Double seconds;
@@ -45,6 +46,7 @@ public Double getSeconds() {
45
46
47
@Override
48
public String toString() {
49
+ Locale.setDefault(new Locale("en", "US"));
50
String ret;
51
if (seconds == null) {
52
ret = null;
0 commit comments