]
Radoslav Rábara closed JBIDE-17976.
-----------------------------------
Verified with JBDS 8.0.0.CR1-v20140831-0335-B201
Problem markers are not removed on related Parameter Aggregators
----------------------------------------------------------------
Key: JBIDE-17976
URL:
https://issues.jboss.org/browse/JBIDE-17976
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: webservices
Affects Versions: 4.2.0.Beta3
Reporter: Xavier Coulon
Assignee: Xavier Coulon
Fix For: 4.2.0.CR1
Let's have those 2 classes:
{code}
@Path("/rest")
public class RestService {
@POST
@Path("{id}")
public void post(@BeanParam BeanClass bean) {
}
}
{code}
and
{code}
public class BeanClass {
@PathParam("id")
private Integer id;
}
{code}
if the users changes {{@Path("\{id\}")}} to {{@Path("\{i\}")}} in the
{{RestService}}, a problem marker will be set on {{@PathParam("id")}} in
{{BeanClass}}, which is fine.
If the user changes {{@Path("\{i\}")}} back to {{@Path("\{id\}")}},
the problem marker is not removed :(