We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 363bbf5 commit 92a67bbCopy full SHA for 92a67bb
1 file changed
app/src/main/java/org/schabi/newpipe/player/playqueue/PlayQueue.java
@@ -40,17 +40,15 @@
40
*/
41
public abstract class PlayQueue implements Serializable {
42
public static final boolean DEBUG = MainActivity.DEBUG;
43
-
44
- private List<PlayQueueItem> backup;
45
- private List<PlayQueueItem> streams;
46
47
@NonNull
48
private final AtomicInteger queueIndex;
49
private final List<PlayQueueItem> history = new ArrayList<>();
50
+ private List<PlayQueueItem> backup;
+ private List<PlayQueueItem> streams;
+
51
private transient BehaviorSubject<PlayQueueEvent> eventBroadcast;
52
private transient Flowable<PlayQueueEvent> broadcastReceiver;
53
54
private transient boolean disposed = false;
55
56
PlayQueue(final int index, final List<PlayQueueItem> startWith) {
0 commit comments