diff options
| author | Jeff Carr <[email protected]> | 2025-03-05 02:59:11 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-03-05 02:59:11 -0600 |
| commit | b38cf5f0fa3fbffa02f4a988b692e315e145e5bc (patch) | |
| tree | 3fec2bba41301d67efbade5b482c60c5610247f7 | |
| parent | cc51fd364dfe348642082f37a6cd9d49210bc32f (diff) | |
nil checkv0.0.90
| -rw-r--r-- | repo.test.go | 4 |
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) } |
