jee-modules/jsf-module/impl/src/main/java/org/apache/myfaces/extensions/cdi/jsf/impl/listener/phase/CodiLifecycleWrapper.java [108:130]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void removePhaseListener(PhaseListener phaseListener)
    {
        wrapped.removePhaseListener(phaseListener);
    }

    /**
     * Performs cleanup tasks after the rendering process
     * <p/>
     * {@inheritDoc}
     */
    public void render(FacesContext facesContext)
    {
        //TODO avoid ContextNotActiveException - details:
        //TODO due to mojarra & weld issues (of some version) we might have to check if the context(s) are active

        ConversationRequiredUtils.ensureExistingConversation(facesContext);

        wrapped.render(facesContext);

        ConversationUtils.postRenderCleanup(facesContext);
    }

    private void broadcastApplicationStartupBroadcaster()
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



jee-modules/jsf20-module/impl/src/main/java/org/apache/myfaces/extensions/cdi/jsf2/impl/listener/phase/CodiLifecycleWrapper.java [109:131]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void removePhaseListener(PhaseListener phaseListener)
    {
        wrapped.removePhaseListener(phaseListener);
    }

    /**
     * Performs cleanup tasks after the rendering process
     *
     * {@inheritDoc}
     */
    public void render(FacesContext facesContext)
    {
        //TODO avoid ContextNotActiveException - details:
        //TODO due to mojarra & weld issues (of some version) we might have to check if the context(s) are active

        ConversationRequiredUtils.ensureExistingConversation(facesContext);

        wrapped.render(facesContext);

        ConversationUtils.postRenderCleanup(facesContext);
    }

    private void broadcastApplicationStartupBroadcaster()
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



