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

(-)a/refactoring.api/src/org/netbeans/modules/refactoring/spi/impl/ParametersPanel.java (+4 lines)
Lines 556-561 Link Here
556
    
556
    
557
    // disables all components in the custom panel
557
    // disables all components in the custom panel
558
    private void disableComponents(Container c) {
558
    private void disableComponents(Container c) {
559
        if (c==null) {
560
            assert customPanel == null;
561
            return;
562
        }
559
        RefactoringPanel.checkEventThread();
563
        RefactoringPanel.checkEventThread();
560
        Component children[] = c.getComponents();
564
        Component children[] = c.getComponents();
561
        for (int i = 0; i < children.length; i++) {
565
        for (int i = 0; i < children.length; i++) {

Return to bug 192647