What is wrong with this statement?
private final HashMap<String, SortedMap<Long, Long>> abc;
abc = new HashMap<String, TreeMap<Long, Long>>;
It shows the error that SortedMap cannot be converted to TreeMap like this? How do I make this possible?