mirror of
https://github.com/samsonjs/media.git
synced 2026-04-19 13:35:47 +00:00
Remove redundant types
This commit is contained in:
parent
160a88baf9
commit
773a69ddf9
1 changed files with 5 additions and 5 deletions
|
|
@ -738,11 +738,11 @@ public class WebmExtractorTest extends InstrumentationTestCase {
|
|||
private byte[] currentSampleData;
|
||||
|
||||
public TestTrackOutput() {
|
||||
sampleData = new LinkedList<byte[]>();
|
||||
sampleTimesUs = new LinkedList<Long>();
|
||||
sampleFlags = new LinkedList<Integer>();
|
||||
sampleSizes = new LinkedList<Integer>();
|
||||
sampleEncryptionKeys = new LinkedList<byte[]>();
|
||||
sampleData = new LinkedList<>();
|
||||
sampleTimesUs = new LinkedList<>();
|
||||
sampleFlags = new LinkedList<>();
|
||||
sampleSizes = new LinkedList<>();
|
||||
sampleEncryptionKeys = new LinkedList<>();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
Loading…
Reference in a new issue