(err error)
| 479 | } |
| 480 | |
| 481 | func (this *SQLiteFileListDB) WrapError(err error) error { |
| 482 | if err == nil { |
| 483 | return nil |
| 484 | } |
| 485 | return fmt.Errorf("%w (file: %s)", err, this.dbPath) |
| 486 | } |
| 487 | |
| 488 | func (this *SQLiteFileListDB) HashMapIsLoaded() bool { |
| 489 | return this.hashMapIsLoaded |
no test coverage detected