| Summary: | DefaultProblemFactory bug: "task" marker instead of "problem" marker | ||
|---|---|---|---|
| Product: | [Technology] DLTK | Reporter: | Gabriel Petrovay <gabipetrovay> |
| Component: | Common | Assignee: | 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: | |||
This issue is already fixed by Alexey Panchenko in HEAD and in in R3_0_maintenance so closing as Won't fix. |
The following is wrong: protected String getProblemMarkerType() { return DefaultProblem.MARKER_TYPE_TASK; } it should be: protected String getProblemMarkerType() { return DefaultProblem.MARKER_TYPE_PROBLEM; }