zhenyajiang / jupiter-eclipse-plugin

Automatically exported from code.google.com/p/jupiter-eclipse-plugin
0 stars 0 forks source link

IllegalArgumentException in Jupiter's Marker Code #79

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Markers can have a mapping of attributes.  As of Eclipse 3.5 even though in the 
API it says it just 
takes a Map with no types there is a check that happens deeper in the code that 
enforces that 
attribute values are of type Boolean, String, or Integer.  The exception 
originates from 
MarkerInfo.checkValidAttribute.  Jupiter currently was storing the review issue 
in this mapping and 
this can no longer be done.  The unique issue ID should be stored instead.

Original issue reported on code.google.com by jsakuda on 27 Jun 2009 at 8:34

GoogleCodeExporter commented 8 years ago
Storing the issue ID in the marker object instead of the actual ReviewIssue 
object.

Original comment by jsakuda on 27 Jun 2009 at 6:08