Bug 274422 - [quick fix] new quickfix to make class non-abstract
Summary: [quick fix] new quickfix to make class non-abstract
Status: ASSIGNED
Alias: None
Product: JDT
Classification: Eclipse Project
Component: UI (show other bugs)
Version: 3.5   Edit
Hardware: All All
: P3 enhancement (vote)
Target Milestone: ---   Edit
Assignee: JDT-UI-Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-04-29 16:25 EDT by Benjamin Muskalla CLA
Modified: 2009-04-30 07:10 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 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.