mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
f3d08d59aa
- Remove the windowsparser.HasResource() override, as it was the same on both Windows and Linux - Move the rxLCOWDestination to the lcowParser code - Move the rwModes variable to a generic (non-platform-specific) file, as it's used both for the windowsParser and the linuxParser - Some minor formatting and linting changes Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
5 lines
160 B
Go
5 lines
160 B
Go
package mounts // import "github.com/docker/docker/volume/mounts"
|
|
|
|
func (p *linuxParser) HasResource(m *MountPoint, absolutePath string) bool {
|
|
return false
|
|
}
|