Fix nullability

This commit is contained in:
Oliver Woodman 2018-10-31 20:40:57 +00:00
parent 2dfe7a7ad6
commit a442c72814

View File

@ -15,6 +15,7 @@
*/
package com.google.android.exoplayer2.source.dash.manifest;
import android.support.annotation.Nullable;
import com.google.android.exoplayer2.util.Util;
/** A parsed program information element. */
@ -44,7 +45,7 @@ public class ProgramInformation {
}
@Override
public boolean equals(Object obj) {
public boolean equals(@Nullable Object obj) {
if (this == obj) {
return true;
}