summaryrefslogtreecommitdiff
path: root/repo.test.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-03-05 02:59:11 -0600
committerJeff Carr <[email protected]>2025-03-05 02:59:11 -0600
commitb38cf5f0fa3fbffa02f4a988b692e315e145e5bc (patch)
tree3fec2bba41301d67efbade5b482c60c5610247f7 /repo.test.go
parentcc51fd364dfe348642082f37a6cd9d49210bc32f (diff)
nil checkv0.0.90
Diffstat (limited to 'repo.test.go')
-rw-r--r--repo.test.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/repo.test.go b/repo.test.go
index d62295e..b19ba42 100644
--- a/repo.test.go
+++ b/repo.test.go
@@ -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)
}