(String[] args)
| 23 | } |
| 24 | |
| 25 | public static void main(String[] args) throws ClassNotFoundException, IOException { |
| 26 | final InputStream in = args.length == 0 ? System.in : new FileInputStream(new File(args[0])); |
| 27 | Object object = deserialize(in); |
| 28 | } |
| 29 | } |
nothing calls this directly
no test coverage detected