Java syntax error after upgrading to Jira 7

BenjaminM January 18, 2016

I am getting syntax errors (but the field seems to still work) since updating to JIRA 7.

Any advice?

 

 

image2016-1-18 13:49:32.png

 

import com.atlassian.jira.issue.Issue
Issue issue = issue
if (getCustomFieldValue("Bug Score - Total") >= 15) {
	SLADate = org.apache.commons.lang.time.DateUtils.addDays(issue.getCreated(), 7);
}else if (getCustomFieldValue("Bug Score - Total") <= 14 && getCustomFieldValue("Bug Score - Total") >= 10) {
	SLADate = org.apache.commons.lang.time.DateUtils.addDays(issue.getCreated(), 21);
}else if (getCustomFieldValue("Bug Score - Total") <= 9 && getCustomFieldValue("Bug Score - Total") >= 7) {
	SLADate = org.apache.commons.lang.time.DateUtils.addDays(issue.getCreated(), 35);
}else if (getCustomFieldValue("Bug Score - Total") < 7) {
	return null;
}else {
	return null;
}
return SLADate;

1 answer

0 votes
JamieA
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
January 18, 2016

It's probably not worth worrying about, but you can get rid of the type checking errors by adding type information: https://scriptrunner.adaptavist.com/latest/jira/#_providing_type_information

eg 

getCustomFieldValue("Bug Score - Total") as Long >= 15

assuming it is a Long.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events