I have the problem that the "Go to implementation" popup (Ctrl-Alt-B) brings up multiple entries for some methods. E.g. for the following code
[code]import java.util.HashMap;
import java.util.Map;
public class PopupTest {
private static Map<String,String> map =
new HashMap<String,String> ();
public static void main (String[] args) {
map.values ().toArray (new String [map.size ()]);
}
}[/code]when I put the cursor on the toArray call and hit Alt-Ctrl-B I get a list of hundreds of possible implementations, of which about three quarters are exact duplicates!