821822823824825826827828829830
final int[] ints = new int[counterCount]; for (int i = 0; i < counterCount; i++) { ints[i] = counterValues.get(counterCount - i - 1); } return new ResolvedCountersToken(counterToken, ints); } // not recognized ... return null; }
824825826827828829830831832833