summaryrefslogtreecommitdiff
path: root/libpod/runtime_migrate_unsupported.go
diff options
context:
space:
mode:
authorPaul Holzinger <pholzing@redhat.com>2021-09-17 13:40:05 +0200
committerMatthew Heon <matthew.heon@pm.me>2021-09-22 16:19:32 -0400
commit8784c1dd6efda936ea65f1558153315123e9c3cc (patch)
tree93ff285d8409bd2d5a385e4c33456a35b4075cbf /libpod/runtime_migrate_unsupported.go
parent79966def80554012f6e559a39e372429f7adbb21 (diff)
downloadpodman-8784c1dd6efda936ea65f1558153315123e9c3cc.tar.gz
podman-8784c1dd6efda936ea65f1558153315123e9c3cc.tar.bz2
podman-8784c1dd6efda936ea65f1558153315123e9c3cc.zip
Remove unused code from libpod
The libpod package should only compile on linux. The remote client should never try to import this package. Since these files do not add any value we should remove them, this prevents people from accidentally importing this package because it would fail to compile on windows/macos. [NO TESTS NEEDED] Signed-off-by: Paul Holzinger <pholzing@redhat.com>
Diffstat (limited to 'libpod/runtime_migrate_unsupported.go')
-rw-r--r--libpod/runtime_migrate_unsupported.go15
1 files changed, 0 insertions, 15 deletions
diff --git a/libpod/runtime_migrate_unsupported.go b/libpod/runtime_migrate_unsupported.go
deleted file mode 100644
index a9d351318..000000000
--- a/libpod/runtime_migrate_unsupported.go
+++ /dev/null
@@ -1,15 +0,0 @@
-// +build !linux
-
-package libpod
-
-import (
- "context"
-)
-
-func (r *Runtime) migrate(ctx context.Context) error {
- return nil
-}
-
-func (r *Runtime) stopPauseProcess() error {
- return nil
-}