Remove Mount/Unmount from Builder interface.

Signed-off-by: Anusha Ragunathan <anusha@docker.com>
Upstream-commit: 89ab39b050e0b6bbb7766a4662132b1b7bc8545f
Component: engine
This commit is contained in:
Anusha Ragunathan
2015-12-16 09:11:57 -08:00
parent a99a73ad6e
commit aed633bad5
4 changed files with 6 additions and 36 deletions

View File

@ -141,12 +141,6 @@ type Backend interface {
//ContainerCopy(name string, res string) (io.ReadCloser, error)
// TODO: use copyBackend api
BuilderCopy(containerID string, destPath string, src FileInfo, decompress bool) error
// TODO: remove
// Mount mounts the root filesystem for the container.
Mount(containerID string) error
// Unmount unmounts the root filesystem for the container.
Unmount(containerID string) error
}
// ImageCache abstracts an image cache store.