Skip to content

Commit 23ec15f

Browse files
author
Robert Lazarski
committed
AXIS2-6041 Actually the code uses NumberFormat.getInstance(Locale.US) ... add some comments
1 parent 9df2a0e commit 23ec15f

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

modules/adb/src/org/apache/axis2/databinding/utils/ConverterUtil.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1292,6 +1292,7 @@ public static List toList(Object[] array) {
12921292
public static int compare(int intValue, String value) {
12931293
int param;
12941294
try {
1295+
// See AXIS2-6041 and AXIS2-6068 that require Locale.US
12951296
NumberFormat nf = NumberFormat.getInstance(Locale.US);
12961297
param = nf.parse(value).intValue();
12971298
} catch (Exception e) {

0 commit comments

Comments
 (0)