Skip to content

Commit 2e926f3

Browse files
committed
fix(benchmarks): remove unnecessary providers
1 parent e878c80 commit 2e926f3

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

test/benchmarks/material/button/app.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export class ButtonBenchmarkApp {
3838
BrowserModule,
3939
MatButtonModule,
4040
],
41-
providers: [],
41+
4242
bootstrap: [ButtonBenchmarkApp],
4343
})
4444
export class AppModule {}

test/benchmarks/material/card/app.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export class CardBenchmarkApp {
3737
BrowserModule,
3838
MatCardModule,
3939
],
40-
providers: [],
40+
4141
bootstrap: [CardBenchmarkApp],
4242
})
4343
export class AppModule {}

test/benchmarks/material/checkbox/app.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export class CheckboxBenchmarkApp {
4646
BrowserModule,
4747
MatCheckboxModule,
4848
],
49-
providers: [],
49+
5050
bootstrap: [CheckboxBenchmarkApp],
5151
})
5252
export class AppModule {}

test/benchmarks/material/chips/app.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export class ChipsBenchmarkApp {
5353
BrowserModule,
5454
MatChipsModule,
5555
],
56-
providers: [],
56+
5757
bootstrap: [ChipsBenchmarkApp],
5858
})
5959
export class AppModule {}

test/benchmarks/material/form-field/app.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export class FormFieldBenchmarkApp {
6868
MatSelectModule,
6969
MatInputModule,
7070
],
71-
providers: [],
71+
7272
bootstrap: [FormFieldBenchmarkApp],
7373
})
7474
export class AppModule {}

test/benchmarks/material/radio/app.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export class RadioBenchmarkApp {
6060
BrowserModule,
6161
MatRadioModule,
6262
],
63-
providers: [],
63+
6464
bootstrap: [RadioBenchmarkApp],
6565
})
6666
export class AppModule {}

test/benchmarks/material/slide-toggle/app.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export class SlideToggleBenchmarkApp {
3838
BrowserModule,
3939
MatSlideToggleModule,
4040
],
41-
providers: [],
41+
4242
bootstrap: [SlideToggleBenchmarkApp]
4343
})
4444
export class AppModule {}

test/benchmarks/material/table/app.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ export class TableBenchmarkApp {
7575
BrowserModule,
7676
MatTableModule,
7777
],
78-
providers: [],
78+
7979
bootstrap: [TableBenchmarkApp],
8080
})
8181
export class AppModule {}

test/benchmarks/mdc/button/app.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export class ButtonBenchmarkApp {
3737
BrowserModule,
3838
MatButtonModule,
3939
],
40-
providers: [],
40+
4141
bootstrap: [ButtonBenchmarkApp],
4242
})
4343
export class AppModule {}

test/benchmarks/mdc/checkbox/app.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export class CheckboxBenchmarkApp {
4646
BrowserModule,
4747
MatCheckboxModule,
4848
],
49-
providers: [],
49+
5050
bootstrap: [CheckboxBenchmarkApp],
5151
})
5252
export class AppModule {}

0 commit comments

Comments
 (0)