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

(-)a/projectapi/src/org/netbeans/spi/project/support/LookupProviderSupport.java (-1 / +1 lines)
Lines 113-119 Link Here
113
        private final List<Lookup.Result<?>> results = new ArrayList<Lookup.Result<?>>();
113
        private final List<Lookup.Result<?>> results = new ArrayList<Lookup.Result<?>>();
114
        
114
        
115
        public DelegatingLookupImpl(Lookup base, String path) {
115
        public DelegatingLookupImpl(Lookup base, String path) {
116
            this(base, Lookups.forPath(path), path);
116
            this(base, Lookup.EMPTY, path);//Lookups.forPath(path), path);
117
        }
117
        }
118
        
118
        
119
        public DelegatingLookupImpl(Lookup base, Lookup providerLookup, String path) {
119
        public DelegatingLookupImpl(Lookup base, Lookup providerLookup, String path) {

Return to bug 150194