FakeExtractorInput: Fix exception type

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=124446331
This commit is contained in:
eguven 2016-06-09 04:28:40 -07:00 committed by Oliver Woodman
parent b4746eddb3
commit b206cff98c

View file

@ -212,7 +212,7 @@ public final class FakeExtractorInput implements ExtractorInput {
throw new EOFException();
}
if (position + length > data.length) {
throw new IOException("Attempted to move past end of data: (" + position + " + "
throw new EOFException("Attempted to move past end of data: (" + position + " + "
+ length + ") > " + data.length);
}
return true;