mirror of
https://github.com/TeamNewPipe/NewPipe
synced 2025-09-13 00:05:58 +00:00
Ignore false positive inspection
This commit is contained in:
@@ -539,7 +539,8 @@ public abstract class PlayQueue implements Serializable {
|
||||
|
||||
public boolean equalStreamsAndIndex(@Nullable final PlayQueue other) {
|
||||
if (equalStreams(other)) {
|
||||
return other.getIndex() == getIndex();
|
||||
//noinspection ConstantConditions
|
||||
return other.getIndex() == getIndex(); //NOSONAR: other is not null
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
Reference in New Issue
Block a user