Update the AciTests test cases to eliminate a couple of redundant casts that
were triggering a warning message when compiled with Java SE 6.
| | |
| | | } |
| | | } |
| | | |
| | | return (Object[][]) paramsList.toArray(new Object[][]{}); |
| | | return paramsList.toArray(new Object[][]{}); |
| | | } |
| | | |
| | | @Test(dataProvider = "validAcis") |
| | |
| | | } |
| | | } |
| | | |
| | | return (Object[][]) allTestParams.toArray(new Object[][]{}); |
| | | return allTestParams.toArray(new Object[][]{}); |
| | | } catch (Throwable e) { |
| | | // We had some exceptions here and they were hard to track down |
| | | // because they get hidden behind an InvocationTargetException. |