Пример #1
0
 protected List<String> getDownloadList(List<AppUpdate> updates) {
   consolidateLibs(updates);
   List<String> fileNames = new ArrayList<String>();
   for (AppUpdate list : updates) {
     if (list.isControlPanelApp()) {
       _updatingThis = true;
     }
     fileNames.addAll(list.getDownloadNames());
   }
   return fileNames;
 }