Index: src/org/openide/nodes/NodeOp.java =================================================================== RCS file: /cvs/openide/src/org/openide/nodes/NodeOp.java,v --- src/org/openide/nodes/NodeOp.java 7 Feb 2003 14:04:29 -0000 1.37 +++ src/org/openide/nodes/NodeOp.java 26 Feb 2003 10:08:44 -0000 @@ -100,7 +100,7 @@ * to all of them returns. * * @param nodes array of nodes to compose actions for - * @return the set of actions for the nodes or null if no actions + * @return the set of actions for the nodes or empty array if no actions * were found * @since 3.29 */ @@ -169,7 +169,7 @@ return (Action[])result.toArray(new Action[0]); } else { // no available actions - return null; + return new Action[] {}; } }