Bug 23894

Summary: Extra (TODO) Markers : There is no todo task when there is no error
Product: [Eclipse Project] JDT Reporter: David Audel <david_audel>
Component: CoreAssignee: Philipe Mulet <philippe_mulet>
Status: VERIFIED FIXED QA Contact:
Severity: normal    
Priority: P3    
Version: 2.0   
Target Milestone: 2.1 M2   
Hardware: PC   
OS: Windows 2000   
Whiteboard:

Description David Audel CLA 2002-09-20 06:37:06 EDT
build 20020919
1) Add extra marker "todo" in preferences.
   Window>Preferences>Java>Compiler>Extra Markers
2) Create class X.
-----------------
//todo nothing
public class X {
}
-----------------
3) there is no "todo" task

with the following class the "todo" task appear.
-----------------
//todo nothing
public class X {
   UnknownClass a;
}
-----------------
Comment 1 Philipe Mulet CLA 2002-09-23 04:29:28 EDT
Fixed in latest. Bug was located in code persisting compiler problems into 
task/problem markers (wrong logic).
Comment 2 David Audel CLA 2002-10-17 10:21:42 EDT
Verified.