Commit 51676294 by olly Committed by Oliver Woodman

Fix typo in Id3Decoder

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=163694825
parent ecd9cff0
...@@ -757,7 +757,7 @@ public final class Id3Decoder implements MetadataDecoder { ...@@ -757,7 +757,7 @@ public final class Id3Decoder implements MetadataDecoder {
// Invalid or zero length range. // Invalid or zero length range.
return new byte[0]; return new byte[0];
} }
return Arrays.copyOfRange(data, from, data.length); return Arrays.copyOfRange(data, from, to);
} }
private static final class Id3Header { private static final class Id3Header {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment