I have created a HashSet and a HashMap and I am currently unsure as to whether I need to now declare a constructor.
Can Java run without a constructor ?
private HashSet <String> allJewelCards = new HashSet <String>();
private HashMap <String, Diamond> allDiamonds = new HashMap <String, Diamond>();