Remove dead code found by deadcode analyzer

- Removed 5 unreachable functions (~200 LOC)
- computeIssueContentHash, shouldSkipExport from autoflush.go
- addDependencyUnchecked, removeDependencyIfExists from dependencies.go
- isUniqueConstraintError alias from util.go
- All tests still pass
- Closes bd-7c5915ae
This commit is contained in:
Steve Yegge
2025-10-31 15:12:01 -07:00
parent 415f2e8206
commit ddab26315f
4 changed files with 2 additions and 210 deletions

View File

@@ -48,7 +48,4 @@ func IsUniqueConstraintError(err error) bool {
return strings.Contains(err.Error(), "UNIQUE constraint failed")
}
// isUniqueConstraintError is an alias for IsUniqueConstraintError for internal use
func isUniqueConstraintError(err error) bool {
return IsUniqueConstraintError(err)
}