summaryrefslogtreecommitdiff
path: root/patchset.config.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-09-11 21:47:19 -0500
committerJeff Carr <[email protected]>2025-09-11 21:47:19 -0500
commit6c3162f7ce42a85afcff0b984fe6972f96fd3c8a (patch)
tree20a493a737b3343208ae5be6fe298a8f36d4a8c2 /patchset.config.go
parentef00352a0bc0616f2b55554a3ac6351d0edba25f (diff)
rm full scan stuff
Diffstat (limited to 'patchset.config.go')
-rw-r--r--patchset.config.go10
1 files changed, 4 insertions, 6 deletions
diff --git a/patchset.config.go b/patchset.config.go
index 06a59da..a156521 100644
--- a/patchset.config.go
+++ b/patchset.config.go
@@ -87,12 +87,10 @@ func (pb *Patchset) ShowPatchsets() error {
comment := cleanSubject(patch.Comment)
log.Printf("\t%-8s %-50s %-50s\n", string(patch.CommitHash)[0:8], patch.Namespace, comment)
}
- /*
- for patch := range pb.IterAll() {
- comment := cleanSubject(patch.Comment)
- log.Info("\tnew patch:", patch.NewHash, "commithash:", patch.CommitHash, patch.Namespace, comment)
- }
- */
+ // for patch := range pb.IterAll() {
+ // comment := cleanSubject(patch.Comment)
+ // log.Info("\tnew patch:", patch.NewHash, "commithash:", patch.CommitHash, patch.Namespace, comment)
+ // }
return nil
}