nil check

This commit is contained in:
Jeff Carr 2025-03-05 02:59:11 -06:00
parent cc51fd364d
commit b38cf5f0fa
1 changed files with 4 additions and 0 deletions

View File

@ -15,6 +15,10 @@ import (
)
func (mt *ReposTable) Delete() {
if mt == nil {
log.Info("mt == nil table already deleted")
return
}
log.Info("implement table Delete here")
mt.parent.DeleteTable(mt.pb)
}