Question was resolved by adding exerciseList.removeAllItems(); before the for loop
public void popupMenuWillBecomeVisible(PopupMenuEvent e) {
ArrayList<String> nameList = new ArrayList<>(getComboValues());
exerciseList.removeAllItems();
for (String name : nameList) {
exerciseList.addItem(name);
}
}