(path: string, content: any, binary?: boolean)
| 312 | } |
| 313 | |
| 314 | public writeToPath (path: string, content: any, binary?: boolean) { |
| 315 | |
| 316 | return this.adapterForPath(path).writeToPath(path, content, binary); |
| 317 | } |
| 318 | public parentPathForPath (path: string) { |
| 319 | return this.adapterForPath(path).parentPathForPath(path); |
| 320 | } |
nothing calls this directly
no test coverage detected