mirror of
https://github.com/gesellix/Bose-SoundTouch.git
synced 2026-08-18 16:46:17 +00:00
- Removed unused result parameter from internal post() method - Updated all 18 callers to remove nil result parameter - Deleted unused XML unmarshaling logic for POST responses - Simplified method signature from post(endpoint, payload, result) to post(endpoint, payload) Since all callers passed nil for result parameter, this simplifies the API without breaking any functionality. POST operations in this API don't return data that needs unmarshaling. Progress: Resolved final unparam issue Total issues: 16 → 15 (6% improvement) Remaining: - gocyclo: 14 (high function complexity) - revive: 1 (DiscoveryService naming)