protected void bindRepository()

in src/main/java/org/apache/sling/jcr/base/internal/RepositoryPrinterProvider.java [101:112]


    protected void bindRepository(final Repository repo, final Map<String, Object> props) {
        final BundleContext processContext;
        synchronized ( pendingServices ) {
            processContext = this.bundleContext;
            if ( processContext == null ) {
                this.pendingServices.add(new PendingService(repo, props));
            }
        }
        if ( processContext != null ) {
            this.registerPrinter(processContext, repo, props);
        }
    }