File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
storage/ctab/src/main/java/org/openscience/cdk/io Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 5151import java .io .Writer ;
5252import java .nio .charset .StandardCharsets ;
5353import java .text .DecimalFormat ;
54+ import java .text .DecimalFormatSymbols ;
5455import java .text .NumberFormat ;
5556import java .text .SimpleDateFormat ;
5657import java .util .ArrayList ;
8687public final class MDLV3000Writer extends DefaultChemObjectWriter {
8788
8889 public static final SimpleDateFormat HEADER_DATE_FORMAT = new SimpleDateFormat ("MMddyyHHmm" );
89- public static final NumberFormat DECIMAL_FORMAT = new DecimalFormat ("#.####" );
90+ public static final NumberFormat DECIMAL_FORMAT = new DecimalFormat ("#.####" , DecimalFormatSymbols . getInstance ( Locale . US ) );
9091 private static final Pattern R_GRP_NUM = Pattern .compile ("R(\\ d+)" );
9192 private V30LineWriter writer ;
9293
You can’t perform that action at this time.
0 commit comments