ソースを参照

useless if, condition il already true

Guillaume ZITTA 8 年 前
コミット
374ada6914
1 ファイル変更7 行追加3 行削除
  1. 7 3
      src/Composer/Downloader/ZipDownloader.php

+ 7 - 3
src/Composer/Downloader/ZipDownloader.php

@@ -59,6 +59,12 @@ class ZipDownloader extends ArchiveDownloader
         return parent::download($package, $path, $output);
         return parent::download($package, $path, $output);
     }
     }
 
 
+    /*
+     * extract $file to $path
+     *
+     * @param string $file File to extract
+     * @param string $path Path where to extract file
+     */
     protected function extract($file, $path)
     protected function extract($file, $path)
     {
     {
         $processError = null;
         $processError = null;
@@ -79,9 +85,7 @@ class ZipDownloader extends ArchiveDownloader
                 $processError = 'Failed to execute ' . $command . "\n\n" . $e->getMessage();
                 $processError = 'Failed to execute ' . $command . "\n\n" . $e->getMessage();
             }
             }
 
 
-            if (!class_exists('ZipArchive')) {
-                throw new \RuntimeException($processError);
-            }
+            throw new \RuntimeException($processError);
         }
         }
 
 
         $zipArchive = new ZipArchive();
         $zipArchive = new ZipArchive();