[tools][system-analyzer] Delete Stats Panel duplicated getter/setter

This CL deletes the duplicated getters and setters
for timeline in Stats panel.

Change-Id: I3a08cfc84e6d099084cb5eeb0e25526a76a891a0
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2301930
Reviewed-by: Camillo Bruni <cbruni@chromium.org>
Commit-Queue: Zeynep Cankara <zcankara@google.com>
Cr-Commit-Position: refs/heads/master@{#68895}
This commit is contained in:
Zeynep Cankara 2020-07-16 12:59:27 +01:00 committed by Commit Bot
parent bd6450e614
commit 86a19a69bb

View File

@ -40,14 +40,6 @@ defineCustomElement('stats-panel', (templateText) =>
return this.timeline_;
}
set timeline(value){
this.timeline_ = value;
}
get timeline(){
return this.timeline_;
}
update() {
this.removeAllChildren(this.stats);
this.updateGeneralStats();