Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 182546 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/hyades/test/ui/internal/navigator/proxy/DefaultExecutionResultProxyNode.java (-9 / +9 lines)
Lines 57-71 Link Here
57
	public DefaultExecutionResultProxyNode(TPFExecutionResult er, Object parent) {
57
	public DefaultExecutionResultProxyNode(TPFExecutionResult er, Object parent) {
58
		super(er, parent);
58
		super(er, parent);
59
		
59
		
60
		LinkedList c = new LinkedList();
60
//		LinkedList c = new LinkedList();
61
		TPFExecutionHistory history = er.getExecutionHistory();
61
//		TPFExecutionHistory history = er.getExecutionHistory();
62
		if (history != null ) {
62
//		if (history != null ) {
63
			EList events = history.getExecutionEvents();
63
//			EList events = history.getExecutionEvents();
64
			for (Iterator it = events.iterator(); it.hasNext();) {
64
//			for (Iterator it = events.iterator(); it.hasNext();) {
65
				getEventChildren((TPFExecutionEvent) it.next(), c, er);
65
//				getEventChildren((TPFExecutionEvent) it.next(), c, er);
66
			}
66
//			}
67
		}
67
//		}
68
		children = (IProxyNode[]) c.toArray(new IProxyNode[c.size()]);
68
		children = new IProxyNode[0];
69
		//- save the name of this element
69
		//- save the name of this element
70
		String name = er.getName();
70
		String name = er.getName();
71
		String testName = null; 
71
		String testName = null; 

Return to bug 182546