diff options
author | Lars Karlitski <lars@karlitski.net> | 2019-02-04 15:17:03 +0100 |
---|---|---|
committer | Lars Karlitski <lars@karlitski.net> | 2019-02-12 14:47:49 +0100 |
commit | a097772cf7c6bc5a51d15aa2c821839ce8f96231 (patch) | |
tree | e5ef3203afd7b7e4b74f68ade5553600bfdbb9a6 /pkg/varlinkapi/images.go | |
parent | faafdcf1f3509aeb83fd43729fa7c40ea360a3ea (diff) | |
download | podman-a097772cf7c6bc5a51d15aa2c821839ce8f96231.tar.gz podman-a097772cf7c6bc5a51d15aa2c821839ce8f96231.tar.bz2 podman-a097772cf7c6bc5a51d15aa2c821839ce8f96231.zip |
varlink: Remove `NotImplemented` type
Remove the `NotImplemented` type and comment out the methods that use
it. This way we can keep track of the methods that still need to be
implemented without committing them to stable API.
Signed-off-by: Lars Karlitski <lars@karlitski.net>
Diffstat (limited to 'pkg/varlinkapi/images.go')
-rw-r--r-- | pkg/varlinkapi/images.go | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/pkg/varlinkapi/images.go b/pkg/varlinkapi/images.go index 5e0889645..6463d9edb 100644 --- a/pkg/varlinkapi/images.go +++ b/pkg/varlinkapi/images.go @@ -276,12 +276,6 @@ func build(runtime *libpod.Runtime, options imagebuildah.BuildOptions, dockerfil return c } -// CreateImage ... -// TODO With Pull being added, should we skip Create? -func (i *LibpodAPI) CreateImage(call iopodman.VarlinkCall) error { - return call.ReplyMethodNotImplemented("CreateImage") -} - // InspectImage returns an image's inspect information as a string that can be serialized. // Requires an image ID or name func (i *LibpodAPI) InspectImage(call iopodman.VarlinkCall, name string) error { |