protected void doDeactivate()

in src/main/java/org/apache/sling/jcr/registration/impl/JndiRegistrationSupport.java [118:128]


    protected void doDeactivate() {
        if (this.jndiContext != null) {
            try {
                this.jndiContext.close();
            } catch (NamingException ne) {
                logger.info("Problem closing JNDI context", ne);
            }

            this.jndiContext = null;
        }
    }