Skip to content

Commit 0db78c4

Browse files
Remove unused function
Signed-off-by: Gabriel Adrian Samfira <[email protected]>
1 parent 2190587 commit 0db78c4

1 file changed

Lines changed: 0 additions & 12 deletions

File tree

mount/mount_windows.go

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -199,15 +199,3 @@ func UnmountAll(mount string, flags int) error {
199199
func UnmountRecursive(mount string, flags int) error {
200200
return UnmountAll(mount, flags)
201201
}
202-
203-
func (m *Mount) bindMount(target string) error {
204-
readOnly := false
205-
for _, option := range m.Options {
206-
if option == "ro" {
207-
readOnly = true
208-
break
209-
}
210-
}
211-
212-
return ApplyFileBinding(target, m.Source, readOnly)
213-
}

0 commit comments

Comments
 (0)