}
// Now set those entries to "should be updated" that are in the list
for (int i = 0; i < onlyEntriesArr.length; i++) {
// Find the matching white list entry
WhiteListEntry entry = null;
for (int j = 0; j < whiteList.length; j++) {
if (onlyEntriesArr[i].equals(whiteList[j].getName())) {
entry = whiteList[j];
break;
}
}
if (entry == null) {
// No matching white list entry found
logError("There is no white list entry named '" + onlyEntriesArr[i]
+ "'", null, true);
} else {
entry.setShouldBeUpdated(true);
}
}
// Log all ignored entries
for (int i = 0; i < whiteList.length; i++) {