Bug 164832

Summary: [clean up] break up multiple variable declarations
Product: [Eclipse Project] JDT Reporter: Martin Aeschlimann <martinae>
Component: UIAssignee: JDT-UI-Inbox <jdt-ui-inbox>
Status: ASSIGNED --- QA Contact:
Severity: enhancement    
Priority: P3 CC: benno.baumgartner, jan.wloka
Version: 3.2Keywords: helpwanted
Target Milestone: ---   
Hardware: PC   
OS: Windows XP   
Whiteboard:

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;