File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed
src/main/java/io/frictionlessdata/tableschema/field Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 2323 <apache-commons-csv .version>1.8</apache-commons-csv .version>
2424 <apache-commons-codec .version>1.15</apache-commons-codec .version>
2525 <apache-commons-validator .version>1.7</apache-commons-validator .version>
26- <geotools .version>25.0 </geotools .version>
27- <jackson .version>2.12.4 </jackson .version>
28- <junit .version>5.7 .2</junit .version>
26+ <geotools .version>26.4 </geotools .version>
27+ <jackson .version>2.13.3 </jackson .version>
28+ <junit .version>5.8 .2</junit .version>
2929 <maven-compiler-plugin .version>3.8.1</maven-compiler-plugin .version>
3030 <maven-source-plugin .version>3.0.1</maven-source-plugin .version>
3131 <maven-javadoc-plugin .version>3.0.1</maven-javadoc-plugin .version>
187187 <plugin >
188188 <groupId >org.owasp</groupId >
189189 <artifactId >dependency-check-maven</artifactId >
190- <version >6.0.1 </version >
190+ <version >7.1.0 </version >
191191 <executions >
192192 <execution >
193193 <goals >
245245 <dependency >
246246 <groupId >org.geotools</groupId >
247247 <artifactId >gt-geometry</artifactId >
248- <version >24.4 </version >
248+ <version >24.6 </version >
249249 </dependency >
250250
251251 <!-- https://mvnrepository.com/artifact/org.locationtech.jts/jts-core -->
Original file line number Diff line number Diff line change 88import java .math .BigInteger ;
99import java .net .URI ;
1010import java .text .NumberFormat ;
11+ import java .util .Locale ;
1112import java .util .Map ;
1213import java .util .regex .Matcher ;
1314import java .util .regex .Pattern ;
@@ -28,7 +29,7 @@ public class NumberField extends Field<Number> {
2829 private static final String REGEX_INTEGER = "[+-]?\\ d+" ;
2930 private static final String REGEX_BARE_NUMBER = "((^\\ D*)|(\\ D*$))" ;
3031
31- private static final NumberFormat numberFormat = NumberFormat .getInstance ();
32+ private static final NumberFormat numberFormat = NumberFormat .getInstance (Locale . ENGLISH );
3233 static {
3334 numberFormat .setMaximumFractionDigits (Integer .MAX_VALUE );
3435 numberFormat .setGroupingUsed (false );
You can’t perform that action at this time.
0 commit comments