Run "make format" (#603)

There was some code that wasn't formatted according to gofmt. This
fixes that.
This commit is contained in:
Sargun Dhillon
2019-05-06 09:26:10 -07:00
committed by Brian Goff
parent f1cb6a7bf6
commit ef62defcea
5 changed files with 31 additions and 30 deletions

View File

@@ -24,11 +24,11 @@ type VicPodCache struct {
type CacheError string
func (c CacheError) Error() string {return string(c)}
func (c CacheError) Error() string { return string(c) }
const (
PodCachePodNameError = CacheError("PodCache called with empty pod name")
PodCacheNilPodError = CacheError("PodCache called with nil pod")
PodCacheNilPodError = CacheError("PodCache called with nil pod")
)
func NewVicPodCache() PodCache {