Remove redundant types

This commit is contained in:
Oliver Woodman 2015-06-18 14:29:28 +01:00
parent 160a88baf9
commit 773a69ddf9

View File

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