删除无用日志

back_recharge
lvxinran 2021-04-01 15:00:30 +08:00
parent 723d4336db
commit 638dc34630
1 changed files with 0 additions and 4 deletions

View File

@ -144,10 +144,6 @@ public class GetPlayerInfoHandler extends BaseHandler{
}
//图鉴信息
Map<Integer, Integer> heroHandBook = heroManager.getHeroHandBook();
for (Map.Entry<Integer, Integer> entry:heroHandBook.entrySet()){
System.out.println(entry.getKey()+":"+entry.getValue()+"神将图鉴");
}
List<CommonProto.EveryHeroHandBook> heroHandBookList = new ArrayList<>();
heroHandBook.forEach((k,v)->heroHandBookList.add(CommonProto.EveryHeroHandBook.newBuilder().setHeroId(k).setMaxStar(v).build()));