(String[] args)
| 7 | |
| 8 | public class NeedCasting { |
| 9 | @SuppressWarnings("unchecked") |
| 10 | public void f(String[] args) throws Exception { |
| 11 | ObjectInputStream in = new ObjectInputStream( |
| 12 | new FileInputStream(args[0])); |
| 13 | List<Widget> shapes = (List<Widget>)in.readObject(); |
| 14 | } |
| 15 | } |
nothing calls this directly
no test coverage detected