|
|
@@ -20,22 +20,16 @@ public class SplashPresenter extends SplashDebugPresenter {
|
|
|
}
|
|
|
|
|
|
private boolean canNext = false;
|
|
|
- private boolean isConnected;
|
|
|
|
|
|
@Override
|
|
|
- protected void destroyInternal2() {
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- protected void launchStarter(boolean isConnected) {
|
|
|
+ protected void startInternalOnce() {
|
|
|
// 다음 화면으로 이동
|
|
|
canNext = true;
|
|
|
- this.isConnected = isConnected;
|
|
|
}
|
|
|
|
|
|
public void onClickNextScreen() {
|
|
|
if (canNext) {
|
|
|
- super.launchStarter(isConnected);
|
|
|
+ super.startInternalOnce();
|
|
|
canNext = false;
|
|
|
}
|
|
|
}
|