Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
Bug 354850 - DefaultProblemFactory bug: "task" marker instead of "problem" marker
Summary: DefaultProblemFactory bug: "task" marker instead of "problem" marker
Status: RESOLVED WONTFIX
Alias: None
Product: DLTK
Classification: Technology
Component: Common (show other bugs)
Version: 3.0   Edit
Hardware: PC Windows 7
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: dltk.common-inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-08-16 11:45 EDT by Gabriel Petrovay CLA
Modified: 2011-08-16 22:53 EDT (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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.