chore: remove issue ID references from comments and changelogs

Strip (bd-xxx), (gt-xxx) suffixes from code comments and changelog
entries. The descriptions remain meaningful without the ephemeral
issue IDs.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Steve Yegge
2025-12-28 10:05:16 -08:00
parent b4deb96924
commit f46cc2e798
82 changed files with 1175 additions and 1182 deletions

View File

@@ -71,7 +71,7 @@ func (r *Registry) withFileLock(fn func() error) error {
// readEntriesLocked reads all entries from the registry file.
// Caller must hold the file lock.
// bd-qn5: Handles missing, empty, or corrupted registry files gracefully.
// Handles missing, empty, or corrupted registry files gracefully.
func (r *Registry) readEntriesLocked() ([]RegistryEntry, error) {
data, err := os.ReadFile(r.path)
if err != nil {
@@ -81,7 +81,7 @@ func (r *Registry) readEntriesLocked() ([]RegistryEntry, error) {
return nil, fmt.Errorf("failed to read registry: %w", err)
}
// bd-qn5: Handle empty file or file with only whitespace/null bytes
// Handle empty file or file with only whitespace/null bytes
// This can happen if the file was created but never written to, or was corrupted
trimmed := make([]byte, 0, len(data))
for _, b := range data {
@@ -95,7 +95,7 @@ func (r *Registry) readEntriesLocked() ([]RegistryEntry, error) {
var entries []RegistryEntry
if err := json.Unmarshal(data, &entries); err != nil {
// bd-qn5: If registry is corrupted, treat as empty rather than failing
// If registry is corrupted, treat as empty rather than failing
// A corrupted registry just means we'll need to rediscover daemons
return []RegistryEntry{}, nil
}