junit4/src/main/java/org/apache/sling/testing/mock/sling/junit/SlingContextBuilder.java [136:147]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        return this;
    }

    /**
     * @return Build {@link SlingContext} instance.
     */
    public @NotNull SlingContext build() {
        return new SlingContext(
                this.plugins,
                this.resourceResolverFactoryActivatorProps,
                this.resourceResolverType,
                this.registerSlingModelsFromClassPath);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



junit5/src/main/java/org/apache/sling/testing/mock/sling/junit5/SlingContextBuilder.java [149:160]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        return this;
    }

    /**
     * @return Build {@link SlingContext} instance.
     */
    public @NotNull SlingContext build() {
        return new SlingContext(
                this.plugins,
                this.resourceResolverFactoryActivatorProps,
                this.resourceResolverType,
                this.registerSlingModelsFromClassPath);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



