src/main/java/org/apache/flink/state/benchmark/ListStateBenchmark.java [67:77]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        dummyLists = new ArrayList<>(listValueCount);
        for (int i = 0; i < listValueCount; ++i) {
            dummyLists.add(random.nextLong());
        }
        keyIndex = new AtomicInteger();
    }

    @Setup(Level.Iteration)
    public void setUpPerIteration() throws Exception {
        for (int i = 0; i < setupKeyCount; ++i) {
            keyedStateBackend.setCurrentKey((long) i);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/flink/state/benchmark/ttl/TtlListStateBenchmark.java [67:77]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        dummyLists = new ArrayList<>(listValueCount);
        for (int i = 0; i < listValueCount; ++i) {
            dummyLists.add(random.nextLong());
        }
        keyIndex = new AtomicInteger();
    }

    @Setup(Level.Iteration)
    public void setUpPerIteration() throws Exception {
        for (int i = 0; i < setupKeyCount; ++i) {
            keyedStateBackend.setCurrentKey((long) i);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



