Browse Source

Fix lint issue

Matt 6 years ago
parent
commit
7796c473ae
1 changed files with 1 additions and 1 deletions
  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}
      */
     run(input, args) {
-        const [blockSize, workFactor, filename] = args;
+        const [blockSize, workFactor] = args;
         if (input.byteLength <= 0) {
             throw new OperationError("Please provide an input.");
         }