I have collection where I am able to convert to a json value
Map<String,String> mSizes
Here I am converting to json using and its working
Gson gson = new Gson();
mStruct = gson.toJson(mSizes);
I have another Collection
Map<String,Map<String,String>> mSizesNested;
Gson gson = new Gson();
mStruct = gson.toJson(mSizesNested);
Here I am getting {}
, How to resolve this