public static void setup()

in src/main/java/org/apache/sling/scripting/javascript/helper/SlingContextFactory.java [51:57]


    public static void setup(ScopeProvider sp, int languageVersion) {
        // TODO what do we do in the other case? debugger won't work
        if (!hasExplicitGlobal()) {
            initGlobal(new SlingContextFactory(sp,
                    Context.isValidLanguageVersion(languageVersion) ? languageVersion : Context.VERSION_DEFAULT));
        }
    }