public Object getIssueCustomFieldValueFromIssue(CustomField field, Issue issue) { if (issue == null || (issue.isCreated() == false)) return null; String fieldValue = (String) issue.getCustomFieldValue(field); String status = (String) getDefaultStatuses(field); if (fieldValue == null || fieldValue.equals(status)) return null; else return fieldValue; }
Always returning the null value which worked fine in jira 4.1.2.
Thanks in advance.
Ok, this is yet another duplicate of https://answers.atlassian.com/questions/117052/what-is-the-problem-with-this-code-in-jira-4-4-5-for-select-list-why-the-list-is-always-returning-null-value where more information has been posted
Have you tried looking at what the strings actually are? Insert a debug line at 9 to look at what fieldValue and status actually contain?
Ahh, hang on - what is "getDefaultStatuses"? That looks like an internal function you've written. You'll need to debug that to work out why it's returning a null.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.