Skip to content

Commit e2a02a1

Browse files
Fix some issues
1 parent 690af88 commit e2a02a1

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

app/src/main/java/org/schabi/newpipe/fragments/detail/VideoDetailFragment.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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)) {

app/src/test/java/org/schabi/newpipe/player/playqueue/PlayQueueItemTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package org.schabi.newpipe.player.playqueue;
22

3-
import static org.junit.Assert.assertEquals;
4-
53
import org.junit.Test;
64

5+
import static org.junit.Assert.assertEquals;
6+
77
public class PlayQueueItemTest {
88

99
public static final String URL = "MY_URL";

0 commit comments

Comments
 (0)