protected void deactivate()

in src/main/java/org/apache/sling/installer/provider/jcr/impl/JcrInstaller.java [319:332]


    protected void deactivate() {
        logger.info("Deactivating Apache Sling JCR Installer");

        if (backgroundThread != null) {
            synchronized (backgroundThread.lock) {
                backgroundThread.active.set(false);
                backgroundThread.lock.notify();
            }
            logger.debug("Waiting for " + backgroundThread.getName() + " Thread to end...");

            this.backgroundThread.shutdown();
            this.backgroundThread = null;
        }
    }