Hi All
I am developing JIRA plugin version 6.4.7
In atlassian-plugin.xml i have defined a field as multiselect.
I am reading like this:
final String[] stats = (String[])map.get("Stats");
If I just select one element from multiselect it returns me a String instead of String[] and my program is getting into trouble.
Any suggestions on how to handle this issue. Please let me know.
Thanks
Abe
Community moderators have prevented the ability to post new answers.
Try to use this way to initialise massive:
final String[] stats = { map.get("Stats") };
See this for explanation:http://stackoverflow.com/questions/5387643/array-initialization-syntax-when-not-in-a-declaration
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.