I am using the following code to create an map in HazelCast
HazelcastInstance instance = null;
Config cfg = new Config();
instance =Hazelcast.newHazelcastInstance(cfg);
instance.getMap(mapName);
Once I am done with the my processing I want to remove this map from HazelCast. Can you Please suggest how to go about it.