Details
-
Bug
-
Status: Resolved
-
Trivial
-
Resolution: Fixed
-
1.5.4
-
None
-
any
Description
On class
public class ApplicationListenerCollection extends ListenerCollection<IApplicationListener>
implements
IApplicationListener
{
....
public void onBeforeDestroyed(final Application application)
{
reversedNotifyIgnoringExceptions(new INotifier<IApplicationListener>()
{
public void notify(IApplicationListener listener)
});
}
}
shouldn't it be
public void onBeforeDestroyed(final Application application)
{
reversedNotifyIgnoringExceptions(new INotifier<IApplicationListener>()
{
public void notify(IApplicationListener listener)
});
}
?