Bug 164832 - [clean up] break up multiple variable declarations
Summary: [clean up] break up multiple variable declarations
Status: ASSIGNED
Alias: None
Product: JDT
Classification: Eclipse Project
Component: UI (show other bugs)
Version: 3.2   Edit
Hardware: PC Windows XP
: P3 enhancement with 2 votes (vote)
Target Milestone: ---   Edit
Assignee: JDT-UI-Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords: helpwanted
Depends on:
Blocks:
 
Reported: 2006-11-16 11:56 EST by Martin Aeschlimann CLA
Modified: 2008-07-16 08:45 EDT (History)
2 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Martin Aeschlimann CLA 2006-11-16 11:56:45 EST
20061116

a code style clean up (and quick assist) could break up multiple variable declarations.

int a, b, c;
->
int a;
int b;
int c;
Comment 1 Jan Wloka CLA 2008-02-29 08:44:21 EST
This quick fix should also be provided if all variables are initialized with a specific value.

int a, b, c = -1;
->
int a = -1;
int b = -1;
int c = -1;