mirror of
https://github.com/TeamNewPipe/NewPipe
synced 2024-12-11 19:29:25 +01:00
Lint: Inner class may be static
This commit is contained in:
parent
ad2ea0b807
commit
0274cd6beb
@ -371,7 +371,7 @@ public class InfoListAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolde
|
||||
};
|
||||
}
|
||||
|
||||
public class HFHolder extends RecyclerView.ViewHolder {
|
||||
public static class HFHolder extends RecyclerView.ViewHolder {
|
||||
public View view;
|
||||
|
||||
HFHolder(final View v) {
|
||||
|
@ -215,7 +215,7 @@ public class PlayQueueAdapter extends RecyclerView.Adapter<RecyclerView.ViewHold
|
||||
}
|
||||
}
|
||||
|
||||
public class HFHolder extends RecyclerView.ViewHolder {
|
||||
public static class HFHolder extends RecyclerView.ViewHolder {
|
||||
public View view;
|
||||
|
||||
public HFHolder(final View v) {
|
||||
|
@ -743,24 +743,24 @@ public class Mp4DashReader {
|
||||
return readFullBox(b);
|
||||
}
|
||||
|
||||
class Box {
|
||||
static class Box {
|
||||
int type;
|
||||
long offset;
|
||||
long size;
|
||||
}
|
||||
|
||||
public class Moof {
|
||||
public static class Moof {
|
||||
int mfhdSequenceNumber;
|
||||
public Traf traf;
|
||||
}
|
||||
|
||||
public class Traf {
|
||||
public static class Traf {
|
||||
public Tfhd tfhd;
|
||||
long tfdt;
|
||||
public Trun trun;
|
||||
}
|
||||
|
||||
public class Tfhd {
|
||||
public static class Tfhd {
|
||||
int bFlags;
|
||||
public int trackId;
|
||||
int defaultSampleDuration;
|
||||
@ -768,7 +768,7 @@ public class Mp4DashReader {
|
||||
int defaultSampleFlags;
|
||||
}
|
||||
|
||||
class TrunEntry {
|
||||
static class TrunEntry {
|
||||
int sampleDuration;
|
||||
int sampleSize;
|
||||
int sampleFlags;
|
||||
@ -779,7 +779,7 @@ public class Mp4DashReader {
|
||||
|
||||
}
|
||||
|
||||
public class Trun {
|
||||
public static class Trun {
|
||||
public int chunkDuration;
|
||||
public int chunkSize;
|
||||
|
||||
@ -837,7 +837,7 @@ public class Mp4DashReader {
|
||||
}
|
||||
}
|
||||
|
||||
public class Tkhd {
|
||||
public static class Tkhd {
|
||||
int trackId;
|
||||
long duration;
|
||||
short bVolume;
|
||||
@ -848,25 +848,25 @@ public class Mp4DashReader {
|
||||
short bAlternateGroup;
|
||||
}
|
||||
|
||||
public class Trak {
|
||||
public static class Trak {
|
||||
public Tkhd tkhd;
|
||||
public Elst edstElst;
|
||||
public Mdia mdia;
|
||||
|
||||
}
|
||||
|
||||
class Mvhd {
|
||||
static class Mvhd {
|
||||
long timeScale;
|
||||
long nextTrackId;
|
||||
}
|
||||
|
||||
class Moov {
|
||||
static class Moov {
|
||||
Mvhd mvhd;
|
||||
Trak[] trak;
|
||||
Trex[] mvexTrex;
|
||||
}
|
||||
|
||||
public class Trex {
|
||||
public static class Trex {
|
||||
private int trackId;
|
||||
int defaultSampleDescriptionIndex;
|
||||
int defaultSampleDuration;
|
||||
@ -874,37 +874,37 @@ public class Mp4DashReader {
|
||||
int defaultSampleFlags;
|
||||
}
|
||||
|
||||
public class Elst {
|
||||
public static class Elst {
|
||||
public long mediaTime;
|
||||
public int bMediaRate;
|
||||
}
|
||||
|
||||
public class Mdia {
|
||||
public static class Mdia {
|
||||
public int mdhdTimeScale;
|
||||
public byte[] mdhd;
|
||||
public Hdlr hdlr;
|
||||
public Minf minf;
|
||||
}
|
||||
|
||||
public class Hdlr {
|
||||
public static class Hdlr {
|
||||
public int type;
|
||||
public int subType;
|
||||
public byte[] bReserved;
|
||||
}
|
||||
|
||||
public class Minf {
|
||||
public static class Minf {
|
||||
public byte[] dinf;
|
||||
public byte[] stblStsd;
|
||||
public byte[] mhd;
|
||||
}
|
||||
|
||||
public class Mp4Track {
|
||||
public static class Mp4Track {
|
||||
public TrackKind kind;
|
||||
public Trak trak;
|
||||
public Trex trex;
|
||||
}
|
||||
|
||||
public class Mp4DashChunk {
|
||||
public static class Mp4DashChunk {
|
||||
public InputStream data;
|
||||
public Moof moof;
|
||||
private int i = 0;
|
||||
@ -936,7 +936,7 @@ public class Mp4DashReader {
|
||||
}
|
||||
}
|
||||
|
||||
public class Mp4DashSample {
|
||||
public static class Mp4DashSample {
|
||||
public TrunEntry info;
|
||||
public byte[] data;
|
||||
}
|
||||
|
@ -897,7 +897,7 @@ public class Mp4FromDashWriter {
|
||||
return buffer.array();
|
||||
}
|
||||
|
||||
class TablesInfo {
|
||||
static class TablesInfo {
|
||||
int stts;
|
||||
int stsc;
|
||||
int[] stscBEntries;
|
||||
|
@ -397,19 +397,19 @@ public class WebMReader {
|
||||
return obj;
|
||||
}
|
||||
|
||||
class Element {
|
||||
static class Element {
|
||||
int type;
|
||||
long offset;
|
||||
long contentSize;
|
||||
long size;
|
||||
}
|
||||
|
||||
public class Info {
|
||||
public static class Info {
|
||||
public long timecodeScale;
|
||||
public long duration;
|
||||
}
|
||||
|
||||
public class WebMTrack {
|
||||
public static class WebMTrack {
|
||||
public long trackNumber;
|
||||
protected int trackType;
|
||||
public String codecId;
|
||||
@ -454,7 +454,7 @@ public class WebMReader {
|
||||
}
|
||||
}
|
||||
|
||||
public class SimpleBlock {
|
||||
public static class SimpleBlock {
|
||||
public InputStream data;
|
||||
public boolean createdFromBlock;
|
||||
|
||||
|
@ -109,7 +109,7 @@ public final class FocusAwareSeekBar extends AppCompatSeekBar {
|
||||
}
|
||||
}
|
||||
|
||||
private final class NestedListener implements OnSeekBarChangeListener {
|
||||
private static final class NestedListener implements OnSeekBarChangeListener {
|
||||
private final OnSeekBarChangeListener delegate;
|
||||
|
||||
boolean isSeeking;
|
||||
|
@ -686,7 +686,7 @@ public class DownloadManager {
|
||||
}
|
||||
}
|
||||
|
||||
public class MissionItem {
|
||||
public static class MissionItem {
|
||||
public int special;
|
||||
public Mission mission;
|
||||
|
||||
|
@ -976,7 +976,7 @@ public class MissionAdapter extends Adapter<ViewHolder> implements Handler.Callb
|
||||
}
|
||||
}
|
||||
|
||||
class ViewHolderHeader extends RecyclerView.ViewHolder {
|
||||
static class ViewHolderHeader extends RecyclerView.ViewHolder {
|
||||
TextView header;
|
||||
|
||||
ViewHolderHeader(View view) {
|
||||
|
Loading…
Reference in New Issue
Block a user