Any reason not to delete the methods?

There is no internal code using them, and remove currently throws an
exception in the only internal implementation.


   public interface LinkCreationHub
{
    /**
     * Adds a listener. If the scope of the listener is per-thread,
then it must be removed.
     *
     * @param listener
     * @deprecated since 5.3.1
     */
    void addListener(LinkCreationListener listener);

    /**
     * Removes a previously added listener.
     *
     * @param listener
     * @deprecated since 5.3.1
     */
    void removeListener(LinkCreationListener listener);

    /**
     * Adds a listener. If the scope of the listener is per-thread,
then it must be removed.
     *
     * @param listener
     * @since 5.2.0
     */
    void addListener(LinkCreationListener2 listener);
}

Josh

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tapestry.apache.org
For additional commands, e-mail: dev-h...@tapestry.apache.org

Reply via email to