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