Hi.
I execute all steps ... and create empty myReportClass with
public String generateReportHtml(ProjectActionSupport projectActionSupport, Map map) throws Exception {return null;
}
But problem is:
Multiple markers at this line
- implements com.atlassian.jira.plugin.report.Report.generateReportHtml
- Map is a raw type. References to generic type Map<K,V> should be parameterized
....
You prepare same procedure and result is same problem?! How to fix this?
Best Regards
Miglen Nanev
Community moderators have prevented the ability to post new answers.
You should to have somthing like this:
public String generateReportHtml(ProjectActionSupport projectActionSupport, Map<Objects, Objects> map) throws Exception {
return null;
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.