Selaa lähdekoodia

Fix lint issue

Matt 6 vuotta sitten
vanhempi
commit
7796c473ae
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      src/core/operations/Bzip2Compress.mjs

+ 1 - 1
src/core/operations/Bzip2Compress.mjs

@@ -45,7 +45,7 @@ class Bzip2Compress extends Operation {
      * @returns {File}
      * @returns {File}
      */
      */
     run(input, args) {
     run(input, args) {
-        const [blockSize, workFactor, filename] = args;
+        const [blockSize, workFactor] = args;
         if (input.byteLength <= 0) {
         if (input.byteLength <= 0) {
             throw new OperationError("Please provide an input.");
             throw new OperationError("Please provide an input.");
         }
         }