| Summary: | [Contributions] ActionContributionItem always gets the currentTimeMillis | ||
|---|---|---|---|
| Product: | [Eclipse Project] Platform | Reporter: | Michael Fraenkel <fraenkel> |
| Component: | UI | Assignee: | Paul Webster <pwebster> |
| Status: | VERIFIED FIXED | QA Contact: | |
| Severity: | normal | ||
| Priority: | P5 | Keywords: | helpwanted |
| Version: | 3.0 | ||
| Target Milestone: | 3.3.1 | ||
| Hardware: | PC | ||
| OS: | Windows XP | ||
| Whiteboard: | |||
|
Description
Michael Fraenkel
Assigning to component owner PW Before : line 540
long ms = System.currentTimeMillis();
if (trace) {
System.out.println("Running action: " + action.getText()); //$NON-NLS-1$
}
After : line 540
long ms = 0;
if (trace) {
ms = System.currentTimeMillis();
System.out.println("Running action: " + action.getText()); //$NON-NLS-1$
}
Released in HEAD and 3.3.1 >20070814 PW In M20070905-1045 PW |