Bug 274422

Summary: [quick fix] new quickfix to make class non-abstract
Product: [Eclipse Project] JDT Reporter: Benjamin Muskalla <b.muskalla>
Component: UIAssignee: JDT-UI-Inbox <jdt-ui-inbox>
Status: ASSIGNED --- QA Contact:
Severity: enhancement    
Priority: P3 CC: daniel_megert
Version: 3.5   
Target Milestone: ---   
Hardware: All   
OS: All   
Whiteboard:

Description Benjamin Muskalla CLA 2009-04-29 16:25:56 EDT
I20090414-0800

Snippet:
------------------------------------
public abstract class A {
    public static void main(String[] args) {
        new A();
    }
}
------------------------------------

I think a quick fix to remove the abstract modifier should be offered in this case.