btrfs: Add comment to Put()

Document why we don't need to do anything in Put().

Docker-DCO-1.1-Signed-off-by: Alexander Larsson <alexl@redhat.com> (github: alexlarsson)
Upstream-commit: a1851a6d3e69d67bfc4e6bfdec85ba58293351b9
Component: engine
This commit is contained in:
Alexander Larsson
2014-01-28 09:56:51 +01:00
parent a906461155
commit 658be79c83

View File

@ -206,6 +206,8 @@ func (d *Driver) Get(id string) (string, error) {
}
func (d *Driver) Put(id string) {
// Get() creates no runtime resources (like e.g. mounts)
// so this doesn't need to do anything.
}
func (d *Driver) Exists(id string) bool {