Replaced back arrow with x in some places and cleaned some code up
This commit is contained in:
parent
eb9b4bcb25
commit
6c7ee47d3f
7 changed files with 27 additions and 21 deletions
|
|
@ -33,7 +33,7 @@ public abstract class AbsSmartPlaylist extends Playlist {
|
|||
this.iconRes = R.drawable.ic_queue_music_white_24dp;
|
||||
}
|
||||
|
||||
@Nullable
|
||||
@NonNull
|
||||
public SmartPlaylistSongAdapter createAdapter(AppCompatActivity activity, @Nullable CabHolder cabHolder) {
|
||||
return new SmartPlaylistSongAdapter(activity, this, cabHolder);
|
||||
}
|
||||
|
|
@ -51,7 +51,7 @@ public abstract class AbsSmartPlaylist extends Playlist {
|
|||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(@NonNull final Object obj) {
|
||||
public boolean equals(@Nullable final Object obj) {
|
||||
if (super.equals(obj)) {
|
||||
if (getClass() != obj.getClass()) {
|
||||
return false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue