Skip to content

Commit 7d4fcd5

Browse files
authored
fix(benchmark): fix license header, remove a11y import, and remove @title doc (#19582)
1 parent efed41c commit 7d4fcd5

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

test/benchmarks/material/checkbox/BUILD.bazel

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ component_benchmark(
1515
"@npm//@angular/core",
1616
"@npm//@angular/platform-browser",
1717
"//src/material/checkbox",
18-
"//src/cdk/a11y",
1918
],
2019
ng_srcs = [":app.module.ts"],
2120
prefix = "",

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

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,15 @@
11
/**
22
* @license
3-
* Copyright Google Inc. All Rights Reserved.
3+
* Copyright Google LLC All Rights Reserved.
44
*
55
* Use of this source code is governed by an MIT-style license that can be
66
* found in the LICENSE file at https://angular.io/license
77
*/
8-
import {A11yModule} from '@angular/cdk/a11y';
8+
99
import {Component, NgModule, ViewEncapsulation} from '@angular/core';
1010
import {BrowserModule} from '@angular/platform-browser';
1111
import {MatCheckboxModule} from '@angular/material/checkbox';
1212

13-
/**
14-
* @title Checkbox benchmark component.
15-
*/
1613
@Component({
1714
selector: 'app-root',
1815
template: `
@@ -46,7 +43,6 @@ export class CheckboxBenchmarkApp {
4643
@NgModule({
4744
declarations: [CheckboxBenchmarkApp],
4845
imports: [
49-
A11yModule,
5046
BrowserModule,
5147
MatCheckboxModule,
5248
],

0 commit comments

Comments
 (0)