private synchronized void stop()

in src/main/java/org/apache/sling/installer/factories/configuration/impl/ServicesListener.java [118:130]


    private synchronized void stop() {
        active.set(false);
        // unregister
        if (this.webconsoleRegistration != null) {
            this.webconsoleRegistration.unregister();
            this.webconsoleRegistration = null;
        }
        if (this.configTaskCreatorRegistration != null) {
            this.configTaskCreatorRegistration.unregister();
            this.configTaskCreatorRegistration = null;
        }
        this.configTaskCreator = null;
    }