Bug 106320 - [quick assist] split variable declaration
Summary: [quick assist] split variable declaration
Status: ASSIGNED
Alias: None
Product: JDT
Classification: Eclipse Project
Component: UI (show other bugs)
Version: 3.1   Edit
Hardware: PC Windows 2000
: P3 enhancement with 1 vote (vote)
Target Milestone: ---   Edit
Assignee: JDT-UI-Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-08-08 04:56 EDT by Ilja Preuss CLA
Modified: 2009-01-23 11:33 EST (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 Ilja Preuss CLA 2005-08-08 04:56:51 EDT
Provide a quick assist that changes a multi variable declaration to several 
single variable declarations:

private int foo, bar;

--->

private int foo;
private int bar;