Bug 68010 - [1.5] Return type of bridge method is not correct inside outliner
Summary: [1.5] Return type of bridge method is not correct inside outliner
Status: RESOLVED FIXED
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Core (show other bugs)
Version: 3.0   Edit
Hardware: PC Windows XP
: P3 normal (vote)
Target Milestone: 3.1 M1   Edit
Assignee: Jerome Lanneluc CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-06-21 11:19 EDT by David Audel CLA
Modified: 2005-01-11 11:02 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 David Audel CLA 2004-06-21 11:19:26 EDT
use build 3.0RC3

1) change preference to show return type inside outliner 
   Preferences>Java>Appearance>how method return type 
2) create a new java project that use a 1.5 jre
3) open type java.io.PrintWriter

Inside outliner you can see three methods "Appendable append(char)".
These methods are:
  method - PrintWriter append(char)
  bridge method - Writer append(char)
  bridge method - Appendable append(char)



The problem come from binary method handle (BinaryNemthod). The occurrence 
count is the same for these three methods.
Comment 1 Jerome Lanneluc CLA 2004-07-06 16:31:08 EDT
Fixed ClassFileInfo.generateMethodInfos(...) to increase the occurence count 
of duplicate methods.