Re: [JEXL] How to set an empty string array property value?

2013-11-01 Thread Woonsan Ko
I created a JIRA issue for this and attached patches: - https://issues.apache.org/jira/browse/JEXL-144 I think it's a good improvement because it is very natural to try to set an empty array property like the following:     // setting an empty array     bean.strarr =  [ ]; I hope the

[JEXL] How to set an empty string array property value?

2013-10-31 Thread Woonsan Ko
Hi, I'm testing with JEXL 2.1.2-SNAPSHOT (The 2.0 branch snapshot). My bean has a property setter with string array.     public void setValues(String[] values) {     // ...     } And, a JEXL script setting an empty array like the following seems to fail and maybe it even fails to find the