Bug 84524 - [1.5][search] Reference search does not find generics
Summary: [1.5][search] Reference search does not find generics
Status: RESOLVED DUPLICATE of bug 75642
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Core (show other bugs)
Version: 3.1   Edit
Hardware: PC Windows XP
: P3 normal (vote)
Target Milestone: 3.1 M5   Edit
Assignee: Frederic Fusier CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-02-05 19:23 EST by Tammo Freese CLA
Modified: 2005-02-15 05:24 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 Tammo Freese CLA 2005-02-05 19:23:07 EST
Searching for references of methods one() and two()
leads to no results:

package org.easymock.internal;

import java.util.ArrayList;
import java.util.List;

public class ReferenceSearchTest {

    public void test() {
        one(new ArrayList<String>());
        one(null);
        two(new ArrayList<String>());
        two(null);
    }

    private void one(List<String> matchedCalls) {
    }
    
    private void two(ArrayList<String> matchedCalls) {
    }
}
Comment 1 Olivier Thomann CLA 2005-02-06 11:53:31 EST
What build are you using?
Comment 2 Tammo Freese CLA 2005-02-06 18:31:33 EST
3.1M4
Comment 3 Frederic Fusier CLA 2005-02-15 05:24:52 EST

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