Close removes all temporary files used by the comparer.
()
| 68 | |
| 69 | // Close removes all temporary files used by the comparer. |
| 70 | func (c *Comparer) Close() error { |
| 71 | //nolint:wrapcheck |
| 72 | return os.RemoveAll(c.tmpDir) |
| 73 | } |
| 74 | |
| 75 | func maybeOID(e fs.Entry) string { |
| 76 | if h, ok := e.(object.HasObjectID); ok { |