summaryrefslogtreecommitdiff
path: root/libpod/container_stat_unsupported.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-09-18 07:46:04 -0400
committerGitHub <noreply@github.com>2021-09-18 07:46:04 -0400
commita9e95eb3274140318fe723dc60deb1627bfa31ec (patch)
treeb7cdc5c5c024a11e44d1b6e2704b21aa07df3bbb /libpod/container_stat_unsupported.go
parentfc4a47e0e7ef9404d725d3d1fc7beb621879640c (diff)
parentc692f7a18b0dc49aace5eddc61072667d25d6dc7 (diff)
downloadpodman-a9e95eb3274140318fe723dc60deb1627bfa31ec.tar.gz
podman-a9e95eb3274140318fe723dc60deb1627bfa31ec.tar.bz2
podman-a9e95eb3274140318fe723dc60deb1627bfa31ec.zip
Merge pull request #11628 from Luap99/remove-unsued-code
Remove unused code from libpod
Diffstat (limited to 'libpod/container_stat_unsupported.go')
-rw-r--r--libpod/container_stat_unsupported.go13
1 files changed, 0 insertions, 13 deletions
diff --git a/libpod/container_stat_unsupported.go b/libpod/container_stat_unsupported.go
deleted file mode 100644
index c002e4d32..000000000
--- a/libpod/container_stat_unsupported.go
+++ /dev/null
@@ -1,13 +0,0 @@
-// +build !linux
-
-package libpod
-
-import (
- "context"
-
- "github.com/containers/podman/v3/libpod/define"
-)
-
-func (c *Container) stat(ctx context.Context, containerMountPoint string, containerPath string) (*define.FileInfo, string, string, error) {
- return nil, "", "", nil
-}