Bug 96408 - No selection on list#add()
Summary: No selection on list#add()
Status: RESOLVED INVALID
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Core (show other bugs)
Version: 3.1   Edit
Hardware: PC Windows XP
: P3 normal (vote)
Target Milestone: 3.1 RC1   Edit
Assignee: David Audel CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-05-24 06:48 EDT by Philipe Mulet CLA
Modified: 2005-05-24 07:15 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 Philipe Mulet CLA 2005-05-24 06:48:12 EDT
Build 3.1m7

On following code, no selection is found on 'add' selector:

import java.util.List;

public class X<T> {
	void foo(List<String> ls) {
		ls.add(null);
	}
}
Comment 1 Philipe Mulet CLA 2005-05-24 07:15:48 EDT
Cannot reproduce any longer