/**
  * @see	\wcf\data\DatabaseObjectList::readObjects()
  */
 public function readObjects()
 {
     parent::readObjects();
     $fileIDs = array();
     foreach ($this->objects as $file) {
         if ($file->isDeleted) {
             $fileIDs[] = $file->fileID;
         }
     }
     if (!empty($fileIDs)) {
         $this->logList = new EntryFileModificationLogList();
         $this->logList->setEntryFileData($fileIDs, 'trash');
         $this->logList->readObjects();
         foreach ($this->logList->getObjects() as $logEntry) {
             $this->objects[$logEntry->objectID]->setLogEntry($logEntry);
         }
     }
 }