Hi,
@SuppressWarnings("rawtypes")
void addDocumentFields(final Document doc, final Issue issue)
{
@SuppressWarnings("unchecked")
final List<Group> o = (List) customField.getValue(issue);
if (o != null)
{
for (final Group group : o)
{
doc.add(new Field(getDocumentFieldId(), multiGroupConverter.getString(group), Field.Store.YES, indexType));
}
}
}
For this piece of code
[ERROR] /home/vestel/vestel-reporter-group-plugin/src/main/java/customfield/ReporterGroupCF.java:[348,116] cannot find symbol
[ERROR] symbol: variable indexType
[ERROR] location: class customfield.ReporterGroupCF.MultiGroupCustomFieldIndexer
i am getting this error. I am updating for Jira 8 version, how can I find a solution?
Thanks.
Hi @İrem Tunç welcome on the community. What is the content of this class: customfield.ReporterGroupCF.MultiGroupCustomFieldIndexer ?
A piece of code for grouping Assignee and Reporter parts. The groups to which these parts belong are not updating correctly in the company's local Jira.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.