Skip to content

Commit 868d634

Browse files
jackfranklinDevtools-frontend LUCI CQ
authored andcommitted
Remove ?. that is not required.
Bug: none Change-Id: Id054b35a49d5358be6ead822cf881d3b489eb6e7 Reviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/6397056 Auto-Submit: Jack Franklin <[email protected]> Commit-Queue: Nikolay Vitkov <[email protected]> Commit-Queue: Jack Franklin <[email protected]> Reviewed-by: Nikolay Vitkov <[email protected]>
1 parent fc40d63 commit 868d634

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

front_end/testing/TraceLoader.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export class TraceLoader {
5757
if (!context || context.timeout() >= 10_000) {
5858
return;
5959
}
60-
context?.timeout(10_000);
60+
context.timeout(10_000);
6161
}
6262

6363
/**

0 commit comments

Comments
 (0)