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

(-)cnd.script/src/org/netbeans/modules/cnd/makefile/loaders/MakefileDataObject.java (-2 / +2 lines)
Lines 81-88 Link Here
81
    }
81
    }
82
82
83
    @Override
83
    @Override
84
    public Lookup getLookup() {
84
    protected int associateLookup() {
85
        return getCookieSet().getLookup();
85
        return 1;
86
    }
86
    }
87
87
88
    @Messages("Source=&Source")
88
    @Messages("Source=&Source")
(-)cnd.script/src/org/netbeans/modules/cnd/script/loaders/ShellDataObject.java (-3 / +2 lines)
Lines 77-85 Link Here
77
        cookies.add(new ShellExecSupport(getPrimaryEntry()));
77
        cookies.add(new ShellExecSupport(getPrimaryEntry()));
78
    }
78
    }
79
79
80
    @Override
80
    protected int associateLookup() {
81
    public Lookup getLookup() {
81
        return 1;
82
        return getCookieSet().getLookup();
83
    }
82
    }
84
83
85
    @Messages("Source=&Source")
84
    @Messages("Source=&Source")

Return to bug 203903