[android] Revert changes - added methods like legacy auth fragment

This commit is contained in:
Dmitry Donskoy 2019-01-30 15:02:44 +03:00 committed by Aleksandr Zatsepin
parent 14e2deaf0e
commit cf7ca68325

View file

@ -22,17 +22,17 @@ public abstract class BaseAuthFragment extends BaseAsyncOperationFragment
@Override
@CallSuper
public void onAttach(Context context)
public void onStart()
{
super.onAttach(context);
super.onStart();
mAuthorizer.attach(this);
}
@Override
@CallSuper
public void onDestroyView()
public void onStop()
{
super.onDestroyView();
super.onStop();
mAuthorizer.detach();
}