dev@javaserverfaces.java.net

Fix for [Issue 643] broke build

From: Norbert Truchsess <norbert.truchsess_at_t-online.de>
Date: Thu, 04 Oct 2007 16:40:53 +0200

http://fisheye5.cenqua.com/changelog/javaserverfaces-sources/?cs=MAIN:rlubke:20071003204221

seems that the change is incomplete in respect to the proposed
changebundle in

https://javaserverfaces.dev.java.net/nonav/issues/showattachment.cgi/554/changebundle.txt

there's a reference to ApplicationAssociate.setJSFVersionTracker() left
in JSFVersionTracker that results in an unresolved symbol:

    void publishInstanceToApplication() {
        ExternalContext extContext =
FacesContext.getCurrentInstance().getExternalContext();
        if (null != extContext) {
            ApplicationAssociate associate =
ApplicationAssociate.getInstance(extContext);
            if (null != associate) {
                associate.setJSFVersionTracker(this);
            }
        }
    }

both JSF_1_2X_ROLLING and HEAD are affected.

- Norbert