From cc7e8af34076fc7714ece9725c26a4df72cd1a58 Mon Sep 17 00:00:00 2001 From: David Howden Date: Sun, 28 Jun 2015 09:53:57 +1000 Subject: [PATCH] Remove unnecessary continue, and add some spacing. --- id3v2.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/id3v2.go b/id3v2.go index c8c486f..47ae02c 100644 --- a/id3v2.go +++ b/id3v2.go @@ -265,11 +265,10 @@ func readID3v2Frames(r io.Reader, h *ID3v2Header) (map[string]interface{}, error return nil, err } result[rawName] = p + default: result[rawName] = b } - - continue } return result, nil }