Aes128DataSource should be final.

This commit is contained in:
Oliver Woodman 2015-07-30 10:05:54 +01:00
parent a56c00268d
commit 0d42032ada

View File

@ -42,7 +42,7 @@ import javax.crypto.spec.SecretKeySpec;
* designed specifically for reading whole files as defined in an HLS media playlist. For this
* reason the implementation is private to the HLS package.
*/
/* package */ class Aes128DataSource implements DataSource {
/* package */ final class Aes128DataSource implements DataSource {
private final DataSource upstream;
private final byte[] encryptionKey;