In the following code snippet, does the check for dic.isEmpty() result in any performance improvement?
for (Map<String, String> dic : dics) {
if (!dic.isEmpty()) {
Iterator<Map.Entry<String, String>> it = dic.entrySet().iterator();
while (it.hasNext()) {
Map.Entry<String, String> pair = it.next();
Log.d("Substitute", pair.getKey() + " => " + pair.getValue());
}
}
}
After all, if the map/dic is empty, the while() loop will not be entered, so it looks like the check for dic.isEmpty() is redundant - unless there is some other justification for it?