Skip to content

Commit 8077f42

Browse files
authored
lint: remove unused (#30370)
1 parent bc0b50d commit 8077f42

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/next/build/webpack/plugins/flight-manifest-plugin.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,12 @@ export class FlightManifestPlugin {
5656
// @ts-ignore TODO: Remove ignore when webpack 5 is stable
5757
stage: webpack.Compilation.PROCESS_ASSETS_STAGE_ADDITIONS,
5858
},
59-
(assets: any) => this.createAsset(assets, compilation, compiler)
59+
(assets: any) => this.createAsset(assets, compilation)
6060
)
6161
})
6262
}
6363

64-
createAsset(assets: any, compilation: any, compiler: any) {
64+
createAsset(assets: any, compilation: any) {
6565
const json: any = {}
6666
const { clientComponentsRegex } = this
6767
compilation.chunkGroups.forEach((chunkGroup: any) => {

0 commit comments

Comments
 (0)