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

(-)j2ee.sun.ddui/src/org/netbeans/modules/j2ee/sun/ddloaders/multiview/common/NamedBeanGroupNode.java (-1 / +1 lines)
Lines 545-551 Link Here
545
            DDBinding binding = ((NamedBeanNode) parentNode).getBinding();
545
            DDBinding binding = ((NamedBeanNode) parentNode).getBinding();
546
            if(binding != null) {
546
            if(binding != null) {
547
                parentName = binding.isBound() ? binding.getBindingName() : binding.getBeanName();
547
                parentName = binding.isBound() ? binding.getBindingName() : binding.getBeanName();
548
                if(parentName.length() == 0) {
548
                if(parentName == null || parentName.length() == 0) {
549
                    parentName = null;
549
                    parentName = null;
550
                }
550
                }
551
            }
551
            }

Return to bug 182399