53. Introducing type patterns matching for instanceof Can you name the shortcomings of the following classical snippet of code (this is a simple code used to save on a USB device different kinds of artifacts)? public static String save(Object o) throws IOException { if (o instanceof File) { File file = (File) o; return “Saving […]