Fix nullability

This commit is contained in:
Oliver Woodman 2018-10-31 20:40:57 +00:00
parent 9c0bba3b5a
commit c9c4bd89c7

View File

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