mirror of
https://gitee.com/dromara/sa-token.git
synced 2025-04-05 17:37:53 +08:00
refactor: 修改 for 循环条件,减少循环次数
This commit is contained in:
parent
57d2843f90
commit
026aef16bd
@ -506,13 +506,9 @@ public class StpLogic {
|
||||
}
|
||||
}
|
||||
List<TokenSign> list = session.tokenSignListCopyByDevice(device);
|
||||
// 遍历操作
|
||||
for (int i = 0; i < list.size(); i++) {
|
||||
// 只操作前n条
|
||||
if(i >= list.size() - maxLoginCount) {
|
||||
continue;
|
||||
}
|
||||
// 清理: token签名、token最后活跃时间
|
||||
// 遍历操作,只操作前n条
|
||||
for (int i = 0; i < list.size() - maxLoginCount; i++) {
|
||||
// 清理: token签名、token最后活跃时间
|
||||
String tokenValue = list.get(i).getValue();
|
||||
session.removeTokenSign(tokenValue);
|
||||
clearLastActivity(tokenValue);
|
||||
|
Loading…
Reference in New Issue
Block a user