mirror of
https://github.com/containers/podman.git
synced 2025-08-06 11:32:07 +08:00
Replace golang.org/x/exp/slices with slices from std
Use "slices" from the standard library, this package was added in go 1.21 so we can use it now. Signed-off-by: Paul Holzinger <pholzing@redhat.com>
This commit is contained in:
@ -11,6 +11,7 @@ import (
|
||||
"os/exec"
|
||||
"path/filepath"
|
||||
"runtime"
|
||||
"slices"
|
||||
"strconv"
|
||||
"strings"
|
||||
"syscall"
|
||||
@ -22,7 +23,6 @@ import (
|
||||
"github.com/containers/storage/pkg/reexec"
|
||||
"github.com/google/shlex"
|
||||
"github.com/sirupsen/logrus"
|
||||
"golang.org/x/exp/slices"
|
||||
"golang.org/x/sys/unix"
|
||||
)
|
||||
|
||||
|
Reference in New Issue
Block a user