goimports fix.

This commit is contained in:
Renan DelValle 2019-02-13 15:40:17 -08:00
parent 64273844e7
commit 420b899dd5
No known key found for this signature in database
GPG key ID: C240AD6D6F443EC9
3 changed files with 25 additions and 25 deletions

2
job.go
View file

@ -235,7 +235,7 @@ func (j *AuroraJob) TaskConfig() *aurora.TaskConfig {
func (j *AuroraJob) AddURIs(extract bool, cache bool, values ...string) Job {
for _, value := range values {
j.jobConfig.TaskConfig.MesosFetcherUris = append(j.jobConfig.TaskConfig.MesosFetcherUris,
&aurora.MesosFetcherURI{Value: value, Extract: &extract, Cache: &cache,})
&aurora.MesosFetcherURI{Value: value, Extract: &extract, Cache: &cache})
}
return j
}