mirror of
https://github.com/containers/podman.git
synced 2025-06-22 09:58:10 +08:00
fix staticcheck linter warning for deprecated function
go1.18 deprecates `strings.Title()`. However for our use case this is still fine. The recommended replacement is adding about 400kb binary size so lets keep using this for now. Signed-off-by: Paul Holzinger <pholzing@redhat.com>
This commit is contained in:
@ -363,6 +363,11 @@ func (l psReporter) State() string {
|
|||||||
state = fmt.Sprintf("Exited (%d) %s ago", l.ExitCode, t)
|
state = fmt.Sprintf("Exited (%d) %s ago", l.ExitCode, t)
|
||||||
default:
|
default:
|
||||||
// Need to capitalize the first letter to match Docker.
|
// Need to capitalize the first letter to match Docker.
|
||||||
|
|
||||||
|
// strings.Title is deprecated since go 1.18
|
||||||
|
// However for our use case it is still fine. The recommended replacement
|
||||||
|
// is adding about 400kb binary size so lets keep using this for now.
|
||||||
|
//nolint:staticcheck
|
||||||
state = strings.Title(l.ListContainer.State)
|
state = strings.Title(l.ListContainer.State)
|
||||||
}
|
}
|
||||||
return state
|
return state
|
||||||
|
Reference in New Issue
Block a user