Remove unnecessary continue, and add some spacing.

This commit is contained in:
David Howden 2015-06-28 09:53:57 +10:00
parent 624837fdc1
commit cc7e8af340

View File

@ -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
}