|
|
@@ -119,7 +119,6 @@ public class MainFragment extends MainDebugFragment implements IMainView {
|
|
|
button = findViewById(R.id.button_0000);
|
|
|
button.setOnClickListener(v -> {
|
|
|
new LoadingDriver().create(getActivity(), 5000);
|
|
|
- setDefaultPin();
|
|
|
renderDebug();
|
|
|
});
|
|
|
|
|
|
@@ -204,14 +203,6 @@ public class MainFragment extends MainDebugFragment implements IMainView {
|
|
|
new APIGuestModule().call(new RequestBean(), new APIModuleSimpleListener<>());
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * 0000 으로 핀 초기화 - 테스트 용 for test
|
|
|
- */
|
|
|
- @Deprecated
|
|
|
- private void setDefaultPin() {
|
|
|
- SuperModel.getInstance().savePinWithEncryption("0000");
|
|
|
- }
|
|
|
-
|
|
|
@Deprecated
|
|
|
private void login() {
|
|
|
new APIMemberSelectModule().call(new RequestBean(),
|
|
|
@@ -250,7 +241,6 @@ public class MainFragment extends MainDebugFragment implements IMainView {
|
|
|
id = BuildConfig.DEV_USER_1;
|
|
|
}
|
|
|
SuperModel.getInstance().setUserId(StringUtil.isFull(id) ? id : "");
|
|
|
- setDefaultPin(); // pin 0000
|
|
|
login();
|
|
|
}
|
|
|
|
|
|
@@ -269,7 +259,6 @@ public class MainFragment extends MainDebugFragment implements IMainView {
|
|
|
id = BuildConfig.DEV_USER_2;
|
|
|
}
|
|
|
SuperModel.getInstance().setUserId(StringUtil.isFull(id) ? id : "");
|
|
|
- setDefaultPin(); // pin 0000
|
|
|
login();
|
|
|
}
|
|
|
}
|