diff options
author | 2023-11-30 08:58:26 +0900 | |
---|---|---|
committer | 2023-11-30 08:58:26 +0900 | |
commit | adbdbc33f83d7ab65e342432beff9ef96db4095d (patch) | |
tree | f5ad56bfc1dfba0246c644e26371232c15c01d94 /ui/terminal | |
parent | 3622b3464b4c23e39548c82ba88c23f2cc934482 (diff) |
Remove not-used field in smart_status
Bug: 292304818
Test: m nothing
Change-Id: Icd05ee3af49063a01447fef9e9c3daf705f0cc4b
Diffstat (limited to 'ui/terminal')
-rw-r--r-- | ui/terminal/smart_status.go | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/ui/terminal/smart_status.go b/ui/terminal/smart_status.go index 4575ccfdd..3880b04a8 100644 --- a/ui/terminal/smart_status.go +++ b/ui/terminal/smart_status.go @@ -31,9 +31,8 @@ import ( const tableHeightEnVar = "SOONG_UI_TABLE_HEIGHT" type actionTableEntry struct { - action *status.Action - startTime time.Time - estimatedEndTime time.Time + action *status.Action + startTime time.Time } type smartStatusOutput struct { |