(ProdosVirtualDisk ownerFilesystem, File file)
| 143 | } |
| 144 | |
| 145 | public FileNode(ProdosVirtualDisk ownerFilesystem, File file) throws IOException { |
| 146 | super(ownerFilesystem); |
| 147 | setPhysicalFile(file); |
| 148 | setName(file.getName()); |
| 149 | allocate(); |
| 150 | } |
| 151 | |
| 152 | @Override |
| 153 | public void doDeallocate() { |
nothing calls this directly
no test coverage detected