- Java tools: fixed bug in SCL parser (wrong interpretation of numbers with leading "0"

pull/72/head
Michael Zillgith 7 years ago
parent 026357b5eb
commit 75ca279489

@ -86,7 +86,7 @@ public class DataModelValue {
if (trimmedValue.isEmpty())
this.value = new Long(0);
else
this.value = Long.decode(trimmedValue);
this.value = Long.parseLong(trimmedValue);
break;
case BOOLEAN:

Loading…
Cancel
Save