CDV ❯ subclass of ArrayList w/ field being instrumented, produces VerifyError
-
Bug
-
Status: Closed
-
2 Major
-
Resolution: Fixed
-
DSO:L1
-
-
asi
-
Reporter: teck
-
March 05, 2007
-
0
-
Watchers: 0
-
July 27, 2012
-
March 05, 2007
Attachments
Description
Including this class, produces this verify error: java.lang.VerifyError: (class: com/tctest/GenericListTestApp$SubList, method: removeRange signature: (II)V) Bad access to protected data
private static class SubList extends ArrayList { private Vector v;
public void removeRange(int fromIndex, int toIndex) {
super.removeRange(fromIndex, toIndex);
} \}
Comments
Fiona OShea 2007-03-05
Antonio Si 2007-03-05
Add new test cases in GenericListTest.
How hard is this to fix?