File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
main/java/org/schabi/newpipe/fragments/detail
test/java/org/schabi/newpipe/player/playqueue Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -2072,7 +2072,6 @@ private boolean wasCleared() {
20722072 private StackItem findQueueInStack (final PlayQueue queue ) {
20732073 StackItem item = null ;
20742074 final Iterator <StackItem > iterator = stack .descendingIterator ();
2075-
20762075 while (iterator .hasNext ()) {
20772076 final StackItem next = iterator .next ();
20782077 if (next .getPlayQueue ().equals (queue )) {
Original file line number Diff line number Diff line change 11package org .schabi .newpipe .player .playqueue ;
22
3- import static org .junit .Assert .assertEquals ;
4-
53import org .junit .Test ;
64
5+ import static org .junit .Assert .assertEquals ;
6+
77public class PlayQueueItemTest {
88
99 public static final String URL = "MY_URL" ;
You can’t perform that action at this time.
0 commit comments