mirror of
https://gitcode.com/JianFeeeee/ModelRouter.git
synced 2026-09-20 17:07:59 +00:00
chore: remove dead code found in redundancy audit
- provider.truncate: zero callers (oneLineStr is the used superset) - gateway.normalizeModel: zero callers - config.resolvedAPIKey: zero callers (core.resolveSourceKey is the live equivalent) - Stats.Records: zero callers (CSV export uses AuditRecords) - store.containsString: zero callers - Config.MaxConcurrent: global inflight-cap field never read; per-source MaxConcurrent is what actually drives semaphores. Legacy configs carrying a top-level max_concurrent key still load (yaml.v3 ignores unknown fields — verified by test). - gui renderer esc(): zero callers; renderer uses textContent, and the embedded WebUI has its own esc()
This commit is contained in:
@ -186,15 +186,6 @@ func (s *Store) encryptLocked() {
|
||||
}
|
||||
}
|
||||
|
||||
func containsString(list []string, s string) bool {
|
||||
for _, x := range list {
|
||||
if x == s {
|
||||
return true
|
||||
}
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
func removeString(list []string, s string) []string {
|
||||
out := list[:0]
|
||||
for _, x := range list {
|
||||
|
||||
Reference in New Issue
Block a user