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

(-)openide/src/org/openide/awt/Actions.java (+4 lines)
Lines 307-312 Link Here
307
        * @param action the action
307
        * @param action the action
308
        */
308
        */
309
        public Bridge (JComponent comp, Action action) {
309
        public Bridge (JComponent comp, Action action) {
310
            if(comp == null || action == null) {
311
                throw new IllegalArgumentException("None of the arguments can be null: comp="
312
                        + comp + ", action=" + action); // NOI18N
313
            }
310
            this.comp = comp;
314
            this.comp = comp;
311
            this.action = action;
315
            this.action = action;
312
316

Return to bug 69214