Commit 773a69dd by Oliver Woodman

Remove redundant types

parent 160a88ba
...@@ -738,11 +738,11 @@ public class WebmExtractorTest extends InstrumentationTestCase { ...@@ -738,11 +738,11 @@ public class WebmExtractorTest extends InstrumentationTestCase {
private byte[] currentSampleData; private byte[] currentSampleData;
public TestTrackOutput() { public TestTrackOutput() {
sampleData = new LinkedList<byte[]>(); sampleData = new LinkedList<>();
sampleTimesUs = new LinkedList<Long>(); sampleTimesUs = new LinkedList<>();
sampleFlags = new LinkedList<Integer>(); sampleFlags = new LinkedList<>();
sampleSizes = new LinkedList<Integer>(); sampleSizes = new LinkedList<>();
sampleEncryptionKeys = new LinkedList<byte[]>(); sampleEncryptionKeys = new LinkedList<>();
} }
@Override @Override
......
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