I am doing some DB operation, using Loader, populating a HashMap and then filling a TreeMap with this HashMap for Sorting puropse, however when I try to pass this TreeMap to my AsyncTask like:
Sorted = new TreeMap<Date,String>(BD);
new MagicCall().execute(Sorted);
But the compiler is giving me a warning: Type safety: A generic array of Map is created for a varargs parameter
This is my AsyncTask Declaration:
private class MagicCall extends AsyncTask<Map<Date,String>, String, String>
Any Heading?