< prev index next >

src/com/sun/javatest/exec/TT_NodeCache.java

Print this page
rev 145 : 7902237: Fixing raw use of parameterized class
Reviewed-by: jjg

*** 721,731 **** } /** * Determine the index of a particular test in a vector. */ ! private int searchList(TestResult target, Vector list) { int possible = list.indexOf(target); return possible; } private void cleanup() { --- 721,731 ---- } /** * Determine the index of a particular test in a vector. */ ! private int searchList(TestResult target, Vector<?> list) { int possible = list.indexOf(target); return possible; } private void cleanup() {
< prev index next >