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 36424
Collapse All | Expand All

(-)Node.java (-2 / +3 lines)
Lines 940-947 Link Here
940
        }
948
        }
941
        
949
        
942
        final PropertyChangeEvent ev = new PropertyChangeEvent(this, name, o, n);
950
        final PropertyChangeEvent ev = new PropertyChangeEvent(this, name, o, n);
943
        Mutex.EVENT.writeAccess(new Runnable() {
951
        Mutex.EVENT.writeAccess(new Mutex.Action() {
944
            public void run() {
952
            public Object run() {
945
                // Process the listeners last to first, notifying
953
                // Process the listeners last to first, notifying
946
                // those that are interested in this event
954
                // those that are interested in this event
947
                for (int i = listeners.length - 2; i >= 0; i -= 2) {
955
                for (int i = listeners.length - 2; i >= 0; i -= 2) {
Lines 949-954 Link Here
949
                        ((NodeListener)listeners[i+1]).propertyChange(ev);
957
                        ((NodeListener)listeners[i+1]).propertyChange(ev);
950
                    }
958
                    }
951
                }
959
                }
960
                return null;
952
            }
961
            }
953
        }); // M.E.wA
962
        }); // M.E.wA
954
    }
963
    }

Return to bug 36424