(diskPath string, fileNames []string)
| 246 | } |
| 247 | |
| 248 | func (p linux) GetFilesContentsFromDisk(diskPath string, fileNames []string) ([][]byte, error) { |
| 249 | return p.diskManager.GetUtil().GetFilesContents(diskPath, fileNames) |
| 250 | } |
| 251 | |
| 252 | func (p linux) GetDevicePathResolver() (devicePathResolver boshdpresolv.DevicePathResolver) { |
| 253 | return p.devicePathResolver |
nothing calls this directly
no test coverage detected