()
| 430 | } |
| 431 | |
| 432 | func (this *SQLiteFileList) HashMapIsLoaded() bool { |
| 433 | for _, db := range this.dbList { |
| 434 | if !db.HashMapIsLoaded() { |
| 435 | return false |
| 436 | } |
| 437 | } |
| 438 | return true |
| 439 | } |
| 440 | |
| 441 | func (this *SQLiteFileList) remove(hash string, isDeleted bool) (notFound bool, err error) { |
| 442 | var db = this.GetDB(hash) |
no outgoing calls
no test coverage detected