@@ -1043,7 +1043,7 @@ export class TimelinePane extends ViewPane {
1043
1043
}
1044
1044
}
1045
1045
1046
- export class TimelineElementTemplate implements IDisposable {
1046
+ class TimelineElementTemplate implements IDisposable {
1047
1047
static readonly id = 'TimelineElementTemplate' ;
1048
1048
1049
1049
readonly actionBar : ActionBar ;
@@ -1052,15 +1052,14 @@ export class TimelineElementTemplate implements IDisposable {
1052
1052
readonly timestamp : HTMLSpanElement ;
1053
1053
1054
1054
constructor (
1055
- readonly container : HTMLElement ,
1055
+ container : HTMLElement ,
1056
1056
actionViewItemProvider : IActionViewItemProvider ,
1057
- private hoverDelegate : IHoverDelegate ,
1058
-
1057
+ hoverDelegate : IHoverDelegate ,
1059
1058
) {
1060
1059
container . classList . add ( 'custom-view-tree-node-item' ) ;
1061
1060
this . icon = DOM . append ( container , DOM . $ ( '.custom-view-tree-node-item-icon' ) ) ;
1062
1061
1063
- this . iconLabel = new IconLabel ( container , { supportHighlights : true , supportIcons : true , hoverDelegate : this . hoverDelegate } ) ;
1062
+ this . iconLabel = new IconLabel ( container , { supportHighlights : true , supportIcons : true , hoverDelegate : hoverDelegate } ) ;
1064
1063
1065
1064
const timestampContainer = DOM . append ( this . iconLabel . element , DOM . $ ( '.timeline-timestamp-container' ) ) ;
1066
1065
this . timestamp = DOM . append ( timestampContainer , DOM . $ ( 'span.timeline-timestamp' ) ) ;
@@ -1213,7 +1212,7 @@ class TimelineTreeRenderer implements ITreeRenderer<TreeElement, FuzzyScore, Tim
1213
1212
}
1214
1213
1215
1214
disposeTemplate ( template : TimelineElementTemplate ) : void {
1216
- template . iconLabel . dispose ( ) ;
1215
+ template . dispose ( ) ;
1217
1216
}
1218
1217
}
1219
1218
0 commit comments