]
Victor Rubezhny resolved ERT-195.
---------------------------------
Resolution: Done
Generification of IJavaCompletionProposalComputer has type of
computeContextInformation wrong [EBZ#493810]
----------------------------------------------------------------------------------------------------------
Key: ERT-195
URL:
https://issues.jboss.org/browse/ERT-195
Project: Eclipse Release Train
Issue Type: Task
Components: JSDT
Reporter: Friendly Jira Robot
Assignee: Victor Rubezhny
Labels: 3.8_RC2, General, bzira
Fix For: Neon (4.6) RC2
The return type of IJavaCompletionProposalComputer.computeContextInformation was recently
changed from "List" to "List<ICompletionProposal>", it should
have been "List<IContextInformation>".
At the moment all the implementations of
IJavaCompletionProposalComputer.computeContextInformation in the code base have return
type still as "List" with unchecked conversions. That is why there is no compile
error within JSDT on its own.
Note that IJavaCompletionProposalComputer was originally copied from JDT.