Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
Bug 356282 - [content assist] Generic Types and static members don't work well together
Summary: [content assist] Generic Types and static members don't work well together
Status: CLOSED DUPLICATE of bug 301990
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Text (show other bugs)
Version: 3.6   Edit
Hardware: All All
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: JDT-Text-Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-08-31 03:33 EDT by Johannes Rieken CLA
Modified: 2011-08-31 08:05 EDT (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 Johannes Rieken CLA 2011-08-31 03:33:10 EDT
Build Identifier: 3.7

Types with generics always include the generic type even though not needed when invoking a state method

Reproducible: Always

Steps to Reproduce:
1. Have the following CU


public class CU<T> {
	
	static void m() {
		
	}
	
	public static void main(String[] args) {
		
	}
}


2. In the main method type 'CU' and invoke content assist (Ctrl+Space)
> Proposals include CU<T> only, not CU.m()
Comment 1 Dani Megert CLA 2011-08-31 08:05:33 EDT

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