fix
Helius
2022-07-15 c76bec54f31fc072c1b59735a7e5f04cdaeeed7c
src/main/java/cc/mrbird/febs/dapp/utils/BoxUtil.java
@@ -29,9 +29,9 @@
        List<Box> boxList = JSONObject.parseArray(redisStr, Box.class);
        if (CollUtil.isEmpty(boxList)) {
            boxList = Collections.synchronizedList(new ArrayList<>());
            Box box1 = new Box(1, 6);
            Box box2 = new Box(2, 1);
            Box box3 = new Box(3, 1);
            Box box1 = new Box(1, 91);
            Box box2 = new Box(2, 4);
            Box box3 = new Box(3, 3);
            Box box4 = new Box(4, 1);
            Box box5 = new Box(5, 1);
            boxList.add(box1);