mirror of
https://github.com/kubernetes/kubernetes.git
synced 2026-04-24 23:57:49 -04:00
gofmt -s from 1.4 does not like
for _ = range BLAH
it wants
for range BLAH
But gofmt from 1.3 dies:
./pkg/proxy/config/config.go:265:6: expected operand, found 'range'
./pkg/proxy/config/config.go:268:3: expected '{', found 'EOF'
So instead, rewrite the code to make them both happy
|
||
|---|---|---|
| .. | ||
| config | ||
| server | ||
| doc.go | ||
| loadbalancer.go | ||
| proxier.go | ||
| proxier_test.go | ||
| roundrobin.go | ||
| roundrobin_test.go | ||
| udp_server.go | ||