Bug 5426 - CodeAssist returns empty completion
Summary: CodeAssist returns empty completion
Status: RESOLVED WONTFIX
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Core (show other bugs)
Version: 2.0   Edit
Hardware: PC Windows 2000
: P3 normal (vote)
Target Milestone: 2.0 M1   Edit
Assignee: Philipe Mulet CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2001-11-01 13:19 EST by Martin Aeschlimann CLA
Modified: 2002-01-11 09:22 EST (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Martin Aeschlimann CLA 2001-11-01 13:19:37 EST
11025
1. In the given class do a code assist after 'goo('.
2. You get one completion proposal, but completion name is empty (should be 
closing bracket?)

public class A {
	public void goo(int i) {
	}
		
	public void foo() {
		goo(
	}

}
Comment 1 Philipe Mulet CLA 2001-11-01 17:31:56 EST
No, it simply recalls what method you chose previously, the intent is not that 
it inserts anything more than what you already have.

The closing parenthesis would have been provided when you inserted the method on 
a completion selector (before the opening parenthesis).