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

pull/93/head
Michael Zillgith 7 years ago
parent 7767e282d6
commit 9d26990313

@ -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