I have this map setup:
@Properties
private Map<String, String> alternateIds = new HashMap<>();
I want to be able to remove items and I thought I would be able to just do something simple like this:
public void setAlternateIds(Map<String, String> alte...