It's a public API that may be used in some third party libraries. It needs
at least one release before h removal.
On Jun 27, 2011 8:55 PM, "Josh Canfield" <[email protected]> wrote:
> 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: [email protected]
> For additional commands, e-mail: [email protected]
>