Bug 508371 - [subwords] Subwords proposes list of generic type as top result
Summary: [subwords] Subwords proposes list of generic type as top result
Status: NEW
Alias: None
Product: z_Archived
Classification: Eclipse Foundation
Component: Recommenders (show other bugs)
Version: unspecified   Edit
Hardware: PC Mac OS X
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: Project inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2016-11-29 07:43 EST by Johannes Dorn CLA
Modified: 2019-07-24 14:36 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 Johannes Dorn CLA 2016-11-29 07:43:56 EST
Scenario:

     public List<ProblemWorkflow> getProblemWorkflows() {
        if (problemWorkflows == null) {
            problemWorkflows = problemWorkflowRepository.findAll();
        }
        return proble|
    }

When triggering content assist after "proble", with subwords enabled i get the suggestion of List<org.example.ProblemWorkflow> as the first result. The first six characters ("List<o") are highlighted as the subwords match.

I would expect "problemWorkflows" as the top result.