Delete unused code

This commit is contained in:
2025-10-20 22:27:22 +02:00
parent 1ae28a0b09
commit d923732aba
4 changed files with 0 additions and 63 deletions

View File

@@ -119,13 +119,3 @@ func (r *instanceRegistry) count() int {
defer r.mu.RUnlock()
return len(r.instances)
}
// CountRunning returns the number of currently running instances.
func (r *instanceRegistry) countRunning() int {
count := 0
r.running.Range(func(key, value any) bool {
count++
return true
})
return count
}