private static void printBookInfo(Book<String> book) {} private static void printBookInfo(Book<Integer> book) {}
both methods have same erasure
private static void printBookInfo(Book book) {} private static void printBookInfo(Book book) {}