1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2025-09-10 14:55:59 +00:00

Fix Sonar warning

This commit is contained in:
Isira Seneviratne
2025-06-11 08:13:13 +05:30
parent e2a02a1f86
commit bb7873d157

View File

@@ -529,7 +529,7 @@ public abstract class PlayQueue implements Serializable {
}
public boolean equalStreamsAndIndex(@Nullable final PlayQueue other) {
return equals(other) && other.getIndex() == getIndex();
return equals(other) && other.getIndex() == getIndex(); //NOSONAR: other is not null
}
public boolean isDisposed() {