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

(-)src/org/openide/nodes/NodeOp.java (-2 / +2 lines)
Lines 100-106 Link Here
100
     * to all of them returns.
100
     * to all of them returns.
101
     *
101
     *
102
     * @param nodes array of nodes to compose actions for
102
     * @param nodes array of nodes to compose actions for
103
     * @return the set of actions for the nodes or null if no actions
103
     * @return the set of actions for the nodes or empty array if no actions
104
     *   were found
104
     *   were found
105
     * @since 3.29
105
     * @since 3.29
106
     */
106
     */
Lines 169-175 Link Here
169
            return (Action[])result.toArray(new Action[0]);
169
            return (Action[])result.toArray(new Action[0]);
170
        } else {
170
        } else {
171
            // no available actions
171
            // no available actions
172
            return null;
172
            return new Action[] {};
173
        }
173
        }
174
    }
174
    }
175
    
175
    

Return to bug 31476