Hello, I have this Map in a for loop:

for (Map.Entry<String, List<String>> entry : storage.entrySet()) {
sendGroupStrings(sender, entry.getValue(), entry.getKey());
}

The...