Skip to content

Commit 864a159

Browse files
authored
Remove extra arguments passed to SortableSet initializing fileDependencies
1 parent 54ceb3c commit 864a159

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/Compilation.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1544,7 +1544,7 @@ class Compilation extends Tapable {
15441544
chunk.ids = [chunk.id];
15451545
}
15461546
}
1547-
}
1547+
15481548

15491549
sortItemsWithModuleIds() {
15501550
this.modules.sort(byIdOrIdentifier);
@@ -1593,7 +1593,7 @@ class Compilation extends Tapable {
15931593
}
15941594

15951595
summarizeDependencies() {
1596-
this.fileDependencies = new SortableSet(this.compilationDependencies);
1596+
this.fileDependencies = new SortableSet();
15971597
this.contextDependencies = new SortableSet();
15981598
this.missingDependencies = new SortableSet();
15991599

0 commit comments

Comments
 (0)