(path: string)
| 305 | return this.adapterForPath(path).getPathInfo(path); |
| 306 | } |
| 307 | public deletePath (path: string) { |
| 308 | return this.adapterForPath(path).deletePath(path); |
| 309 | } |
| 310 | public readPath (path: string) { |
| 311 | return this.adapterForPath(path).readPath(path); |
| 312 | } |
nothing calls this directly
no test coverage detected