Example #1
0
 /**
  * Rmove the files which don't have been created with an {@link Item}. Ca happen if the upload is
  * interrupted
  */
 private void removeFiles() {
   if (itemList != null) {
     for (Item item : itemList) {
       storageController.delete(item.getStorageId());
     }
   }
   itemList = new ArrayList<Item>();
 }