V6053. Collection is modified while iteration is in progress. ConcurrentModificationException may occur.
V6053 The collection is modified while the iteration is in progress. ConcurrentModificationException may occur. DWARFExpressionOpCodes.java(205)
public static final int[] UNSUPPORTED_OPCODES_LIST = { .... };
public static final Set<Integer> UNSUPPORTED_OPCODES = new HashSet<>();
static {
for (int opcode : UNSUPPORTED_OPCODES) {
UNSUPPORTED_OPCODES.add(opcode);
}
}