So I have following presenter and it shows "reset" twice, I need to fix that problem...There is no call of onReset() in my presenter, by the way onReset is protected excluding probability of calling this method from anywhere else. Does anyone know solution of such problem?
@ProxyStandard
interface MyProxy extends Proxy<ApplicationPresenter> {
}
@Inject
ApplicationPresenter(){...}
@Override
protected void onBind() {
}
@Override
protected void onReveal() {
}
@Override
protected void onReset() {
Window.alert("reset");
}