diff options
author | umohnani8 <umohnani@redhat.com> | 2017-12-11 10:20:22 -0500 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2017-12-14 13:56:20 +0000 |
commit | 05f4dd9f41707959ce801f9851c79232a1b79dca (patch) | |
tree | ed4cfc80c90204f6166379f4f2c368ac57d480f1 /oci/finished.go | |
parent | 900afc929f01ef2a38b69263e35c964284f1f9f4 (diff) | |
download | podman-05f4dd9f41707959ce801f9851c79232a1b79dca.tar.gz podman-05f4dd9f41707959ce801f9851c79232a1b79dca.tar.bz2 podman-05f4dd9f41707959ce801f9851c79232a1b79dca.zip |
Clear up fragments of the old api
As everything is being moved over to the new container api
removing files that depended on the old api
Signed-off-by: umohnani8 <umohnani@redhat.com>
Closes: #116
Approved by: rhatdan
Diffstat (limited to 'oci/finished.go')
-rw-r--r-- | oci/finished.go | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/oci/finished.go b/oci/finished.go deleted file mode 100644 index 9fedbfb7a..000000000 --- a/oci/finished.go +++ /dev/null @@ -1,14 +0,0 @@ -// +build !arm,!386 - -package oci - -import ( - "os" - "syscall" - "time" -) - -func getFinishedTime(fi os.FileInfo) time.Time { - st := fi.Sys().(*syscall.Stat_t) - return time.Unix(st.Ctim.Sec, st.Ctim.Nsec) -} |