()
| 76 | } |
| 77 | |
| 78 | func (this *FileReader) Close() error { |
| 79 | if this.isClosed { |
| 80 | return nil |
| 81 | } |
| 82 | this.isClosed = true |
| 83 | return this.bFile.CloseFileReader(this) |
| 84 | } |
| 85 | |
| 86 | func (this *FileReader) Free() error { |
| 87 | return this.fp.Close() |
nothing calls this directly
no test coverage detected