Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
d670166a60
1 changed files with 2 additions and 2 deletions
|
@ -154,9 +154,9 @@ public class RenderingRuleProperty {
|
|||
}
|
||||
return (int) Float.parseFloat(value);
|
||||
} catch (NumberFormatException e) {
|
||||
log.error("Rendering parse " + value);
|
||||
log.error("Rendering parse " + value + " in " + attrName);
|
||||
}
|
||||
return -1;
|
||||
return -1;
|
||||
} else if(type == BOOLEAN_TYPE){
|
||||
return Boolean.parseBoolean(value) ? TRUE_VALUE : FALSE_VALUE;
|
||||
} else if(type == STRING_TYPE){
|
||||
|
|
Loading…
Reference in a new issue