Commit f14caad6 by Kazuyuki Hida

課題9を修正

parent 01642b30
...@@ -209,19 +209,7 @@ public class UserAuthenticateLogic extends AbstractLogic { ...@@ -209,19 +209,7 @@ public class UserAuthenticateLogic extends AbstractLogic {
// 同じユーザの場合、警告なし // 同じユーザの場合、警告なし
result = DeleteDataType.None; result = DeleteDataType.None;
} else { } else {
if (contractLogic.getUDIDOverwiteFlag()) { result = DeleteDataType.All;
if (isDiffUserGroup(dto.sid)) {
// 異なるグループの場合、全て削除
result = DeleteDataType.All;
} else {
// 同一グループの場合
// 警告なし
result = DeleteDataType.None;
}
} else {
// UDID上書きがfalseの場合、全て削除
result = DeleteDataType.All;
}
} }
} }
return result; return result;
......
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