Bug 111349 - [clean up] Add "Infer Autoboxing" refactoring
Summary: [clean up] Add "Infer Autoboxing" refactoring
Status: RESOLVED DUPLICATE of bug 128883
Alias: None
Product: JDT
Classification: Eclipse Project
Component: UI (show other bugs)
Version: 3.1   Edit
Hardware: All All
: P3 enhancement (vote)
Target Milestone: ---   Edit
Assignee: Benno Baumgartner CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-10-03 12:35 EDT by Danny Yates CLA
Modified: 2006-06-19 03:12 EDT (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Danny Yates CLA 2005-10-03 12:35:59 EDT
Similar to the "Infer Generic Types" refactoring, an "Infer Autoboxing" 
refactoring would be useful.

For example:

  List<Integer> l = new ArrayList<Integer>;
  l.add(new Integer(1));

would become:

  l.add(1);
Comment 1 Olivier Thomann CLA 2005-10-03 12:52:40 EDT
Move to JDT/UI
Comment 2 Martin Aeschlimann CLA 2006-06-16 16:32:21 EDT
maybe a clean up candidate
Comment 3 Benno Baumgartner CLA 2006-06-19 03:12:39 EDT

*** This bug has been marked as a duplicate of 128883 ***