Skip to content

Commit

Permalink
Use go fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
akiomik committed Jul 27, 2020
1 parent eb496dc commit 88949da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vimeo/masterjson.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ func (mj *MasterJson) FindAudio(id string) (*Audio, error) {
}

func (mj *MasterJson) FindMaximumBitrateVideo() *Video {
var video Video
var video Video
for _, v := range mj.Video {
if v.Bitrate > video.Bitrate {
video = v
Expand All @@ -97,7 +97,7 @@ func (mj *MasterJson) FindMaximumBitrateVideo() *Video {
}

func (mj *MasterJson) FindMaximumBitrateAudio() *Audio {
var audio Audio
var audio Audio
for _, a := range mj.Audio {
if a.Bitrate > audio.Bitrate {
audio = a
Expand Down

0 comments on commit 88949da

Please sign in to comment.