Problem with Map$Entity ...

Miglen Nanev November 28, 2016
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

1 answer

0 votes
Vasiliy Zverev
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.
November 28, 2016

You should to have somthing like this:

public String generateReportHtml(ProjectActionSupport projectActionSupport, Map&lt;Objects, Objects&gt; map) throws Exception {
    return null;
}

Suggest an answer

Log in or Sign up to answer