(val int64)
| 1919 | } |
| 1920 | |
| 1921 | func updateTime(val int64) time.Time { |
| 1922 | if val == 0 { |
| 1923 | return time.Time{} |
| 1924 | } |
| 1925 | return time.UnixMilli(val) |
| 1926 | } |
| 1927 | |
| 1928 | func updateTimeMillis(ts time.Time) int64 { |
| 1929 | if ts.IsZero() { |
no outgoing calls
no test coverage detected