记录15条改成10条

back_recharge
lvxinran 2021-07-24 18:45:35 +08:00
parent 315c3ae7dd
commit cc1f0a41c8
1 changed files with 2 additions and 2 deletions

View File

@ -64,8 +64,8 @@ public class GetWorldArenaRecordInfoRequestHandler extends BaseHandler<WorldProt
Collections.reverse(collect);
int size = arenaRecordList.size();
if (size > 15) {
String[] removeMapKeys = new String[size - 15];
for (int i = 0; i < size - 15; i++) {
String[] removeMapKeys = new String[size - 10];
for (int i = 0; i < size - 10; i++) {
WorldProto.WroldBattleRecord remove = collect.remove(size-i-1);
String removeId = remove.getRecordId();
removeMapKeys[i] = (removeId);