Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 92292 Details for
Bug 197176
Method Invocation Details: cannot understand "invoked by" and "invokes" columns
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
[patch]
fix for incorrect representation of trace attached by Chris
patch_invokeby_01.txt (text/plain), 1.31 KB, created by
Alexander N. Alexeev
on 2008-03-12 07:21:08 EDT
(
hide
)
Description:
fix for incorrect representation of trace attached by Chris
Filename:
MIME Type:
Creator:
Alexander N. Alexeev
Created:
2008-03-12 07:21:08 EDT
Size:
1.31 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.hyades.trace.views >Index: src/org/eclipse/hyades/trace/views/internal/MethodDetailsStatistic.java >=================================================================== >RCS file: /cvsroot/tptp/trace/org.eclipse.hyades.trace.views/src/org/eclipse/hyades/trace/views/internal/MethodDetailsStatistic.java,v >retrieving revision 1.27 >diff -u -r1.27 MethodDetailsStatistic.java >--- src/org/eclipse/hyades/trace/views/internal/MethodDetailsStatistic.java 1 Feb 2008 22:01:26 -0000 1.27 >+++ src/org/eclipse/hyades/trace/views/internal/MethodDetailsStatistic.java 12 Mar 2008 10:26:56 -0000 >@@ -397,10 +397,11 @@ > Iterator i = m.getInvocations().iterator(); > while(i.hasNext()) > { >- TRCMethodInvocation mi = ((TRCMethodInvocation)i.next()).getInvokedBy(); >+ TRCMethodInvocation childMi = (TRCMethodInvocation)i.next(); >+ TRCMethodInvocation mi = childMi.getInvokedBy(); > if(mi != null && mi.getMethod().equals(selection)) { >- if (mi instanceof TRCAggregatedMethodInvocation) { >- nb += ((TRCAggregatedMethodInvocation) mi).getCount(); >+ if (childMi instanceof TRCAggregatedMethodInvocation) { >+ nb += ((TRCAggregatedMethodInvocation) childMi).getCount(); > } > else { > nb++;
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 197176
:
81668
|
82737
|
87456
|
87463
|
87464
|
87550
|
87584
|
87807
|
88452
|
88453
|
88475
|
88631
|
92241
| 92292