Commit a314d3e0 by Kazuyuki Hida

Merge branch 'features/1.4.500_dev' into 'features/1.4.500'

課題9,10を修正

See merge request !318
parents 2cb30549 f14caad6
......@@ -209,19 +209,7 @@ public class UserAuthenticateLogic extends AbstractLogic {
// 同じユーザの場合、警告なし
result = DeleteDataType.None;
} else {
if (contractLogic.getUDIDOverwiteFlag()) {
if (isDiffUserGroup(dto.sid)) {
// 異なるグループの場合、全て削除
result = DeleteDataType.All;
} else {
// 同一グループの場合
// 警告なし
result = DeleteDataType.None;
}
} else {
// UDID上書きがfalseの場合、全て削除
result = DeleteDataType.All;
}
result = DeleteDataType.All;
}
}
return result;
......
......@@ -286,9 +286,9 @@ public abstract class ABVNoAuthenticatedActivity extends ABVActivity {
private void showMain() {
try {
ContractLogic contractLogic = AbstractLogic.getLogic(ContractLogic.class);
contractLogic.initializeContractServiceOption();
try {
ContractLogic contractLogic = AbstractLogic.getLogic(ContractLogic.class);
contractLogic.initializeContractServiceOption();
final ABVDataCache dataCache = ABVDataCache.getInstance();
dataCache.refreshServiceOptions();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment