@@ -608,7 +608,7 @@ public class LogoutEtcStep3Activity extends AppActivity { | |||
// 检查是否需要继续写卡(根据stepNo判断) | |||
// stepNo是"下一步骤号",如果大于0表示还有下一步,如果为0或null表示完成 | |||
if (stepNo <= 100 && stepNo > 0) { | |||
if (stepNo > 0 && stepNo != 100) { | |||
// 需要继续写卡,更新当前步骤号并递归调用 | |||
currentStepNo = stepNo; | |||
Log.i(this.getClass().getSimpleName(), "需要继续写卡,下一步骤号: " + stepNo + ",当前步骤号更新为: " + currentStepNo + ",开始下一轮循环"); |