Skip to content

Commit 334c1c4

Browse files
committed
remove unused variable
1 parent 8835751 commit 334c1c4

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

lib/optimize/ConcatenatedModule.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,6 @@ class ConcatenatedModule extends Module {
179179
this.built = modules.some(m => m.built);
180180
this.cacheable = modules.every(m => m.cacheable);
181181
const modulesSet = new Set(modules);
182-
this._modulesSet = modulesSet;
183182
this.reasons = rootModule.reasons.filter(reason => !modulesSet.has(reason.module));
184183
this.meta = rootModule.meta;
185184
this.moduleArgument = rootModule.moduleArgument;
@@ -296,8 +295,6 @@ class ConcatenatedModule extends Module {
296295
}
297296

298297
source(dependencyTemplates, outputOptions, requestShortener) {
299-
const modulesSet = this._modulesSet;
300-
301298
// Metainfo for each module
302299
const modulesWithInfo = this._orderedConcatenationList.map((info, idx) => {
303300
switch(info.type) {

0 commit comments

Comments
 (0)