This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 214178
Collapse All | Expand All

(-)a/csl.api/src/org/netbeans/modules/csl/navigation/ElementNode.java (-1 / +1 lines)
Lines 545-551 Link Here
545
            
545
            
546
            synchronized (this) {
546
            synchronized (this) {
547
                this.parentItem = description;
547
                this.parentItem = description;
548
                if (processing == 0) {
548
                if (!initialized && processing == 0) {
549
                    return null;
549
                    return null;
550
                }
550
                }
551
                items = snapshot();
551
                items = snapshot();
(-)a/csl.api/src/org/netbeans/modules/csl/navigation/TreeUpdater.java (-3 / +4 lines)
Lines 46-51 Link Here
46
import java.util.Collection;
46
import java.util.Collection;
47
import java.util.HashMap;
47
import java.util.HashMap;
48
import java.util.HashSet;
48
import java.util.HashSet;
49
import java.util.LinkedList;
49
import java.util.List;
50
import java.util.List;
50
import java.util.Map;
51
import java.util.Map;
51
import java.util.Set;
52
import java.util.Set;
Lines 77-89 Link Here
77
     */
78
     */
78
    private boolean     waiting;
79
    private boolean     waiting;
79
    
80
    
80
    private List<Node>  nodesToExpand;
81
    private final List<Node>  nodesToExpand = new LinkedList<Node>();
81
    
82
    
82
    private List<Node>  nodesToExpandRec;
83
    private final List<Node>  nodesToExpandRec = new LinkedList<Node>();
83
    
84
    
84
    private List<UpdateRecord>  childrenToUpdate;
85
    private List<UpdateRecord>  childrenToUpdate;
85
    
86
    
86
    private List<UpdateRecord>  newChildren;
87
    private List<UpdateRecord>  newChildren = new ArrayList<UpdateRecord>();
87
88
88
    public TreeUpdater(ClassMemberPanelUI ui) {
89
    public TreeUpdater(ClassMemberPanelUI ui) {
89
        this.ui = ui;
90
        this.ui = ui;

Return to bug 214178