Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 352374
Collapse All | Expand All

(-)src/org/eclipse/wst/jsdt/internal/ui/text/java/JavaMethodCompletionProposal.java (-1 / +3 lines)
Lines 77-83 Link Here
77
	}
77
	}
78
	
78
	
79
	protected char[] computeTriggerCharacters() {
79
	protected char[] computeTriggerCharacters() {
80
		if (fProposal.getKind() == CompletionProposal.METHOD_NAME_REFERENCE || fProposal.getKind() == CompletionProposal.METHOD_REF)
80
		if (fProposal.getKind() == CompletionProposal.METHOD_NAME_REFERENCE ||
81
				fProposal.getKind() == CompletionProposal.METHOD_REF ||
82
				fProposal.getKind() == CompletionProposal.CONSTRUCTOR_INVOCATION)
81
			return METHOD_NAME_TRIGGERS;
83
			return METHOD_NAME_TRIGGERS;
82
		if (hasParameters())
84
		if (hasParameters())
83
			return METHOD_WITH_ARGUMENTS_TRIGGERS;
85
			return METHOD_WITH_ARGUMENTS_TRIGGERS;

Return to bug 352374