fix
Helius
2022-07-16 2b84cc5d3b0fd316464d982426ea87f2b87db555
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);