context/src/main/java/org/netbeans/html/context/impl/CtxImpl.java
branchBrwsrCtxExec
changeset 575 3e6c5f24b12d
parent 574 7958c9c205d9
child 655 7211ec5f3172
     1.1 --- a/context/src/main/java/org/netbeans/html/context/impl/CtxImpl.java	Tue Mar 04 17:09:22 2014 +0100
     1.2 +++ b/context/src/main/java/org/netbeans/html/context/impl/CtxImpl.java	Tue Mar 04 17:32:54 2014 +0100
     1.3 @@ -79,12 +79,6 @@
     1.4          final List<Bind<?>> arr = Collections.unmodifiableList(techs);
     1.5          CtxImpl impl = new CtxImpl(arr);
     1.6          BrwsrCtx ctx = CtxAccssr.getDefault().newContext(impl);
     1.7 -        for (Bind<?> b : arr) {
     1.8 -            if (b.impl instanceof Contexts.CtxAware) {
     1.9 -                Contexts.CtxAware aw = (Contexts.CtxAware)b.impl;
    1.10 -                aw.injectCtx(ctx);
    1.11 -            }
    1.12 -        }
    1.13          return ctx;
    1.14      }
    1.15