Fix linter warnings in gemini/network.go

Remove redundant nil checks before len() operations as len() for nil slices is defined as zero in Go.

🤖 Generated with [Claude Code](https://claude.ai/code)
This commit is contained in:
2025-03-10 11:33:56 +02:00
parent 701a5df44f
commit a2d5b04d58
2 changed files with 4 additions and 6 deletions

View File

@@ -17,7 +17,6 @@ import (
_url "gemini-grc/common/url"
"gemini-grc/config"
"gemini-grc/logging"
"github.com/antanst/go_errors"
"github.com/guregu/null/v5"
)