Skip to content

Commit bb7873d

Browse files
Fix Sonar warning
1 parent e2a02a1 commit bb7873d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/main/java/org/schabi/newpipe/player/playqueue/PlayQueue.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -529,7 +529,7 @@ public int hashCode() {
529529
}
530530

531531
public boolean equalStreamsAndIndex(@Nullable final PlayQueue other) {
532-
return equals(other) && other.getIndex() == getIndex();
532+
return equals(other) && other.getIndex() == getIndex(); //NOSONAR: other is not null
533533
}
534534

535535
public boolean isDisposed() {

0 commit comments

Comments
 (0)