Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.

Bug 354850

Summary: DefaultProblemFactory bug: "task" marker instead of "problem" marker
Product: [Technology] DLTK Reporter: Gabriel Petrovay <gabipetrovay>
Component: CommonAssignee: dltk.common-inbox <dltk.common-inbox>
Status: RESOLVED WONTFIX QA Contact:
Severity: normal    
Priority: P3 CC: andrei.sobolev
Version: 3.0   
Target Milestone: ---   
Hardware: PC   
OS: Windows 7   
Whiteboard:

Description Gabriel Petrovay CLA 2011-08-16 11:45:35 EDT
The following is wrong:

protected String getProblemMarkerType() {
  return DefaultProblem.MARKER_TYPE_TASK;
}

it should be:


protected String getProblemMarkerType() {
  return DefaultProblem.MARKER_TYPE_PROBLEM;
}
Comment 1 Andrei Sobolev CLA 2011-08-16 22:53:29 EDT
This issue is already fixed by Alexey Panchenko in HEAD and in in R3_0_maintenance so closing as Won't fix.