for (String key : knownProgArr) {
Date date = getDateFromFileName(key);
// Check whether this file is still present AND not expired
// (The key is equal to the file name)
if (!tvDataFiles.containsKey(key)
|| (date != null && date.compareTo(expireDate) < 0)) {
// This day program was deleted -> Inform the listeners
// Get the channel and date
Channel channel = getChannelFromFileName(key, channelArr, channelIdArr);
if ((channel != null) && (date != null)) {