Rename generatingPlaylistProgress to progress
Rename generatingPlaylistProgress to progress, since it is used for merging and downloading, too
This commit is contained in:
parent
89a1737536
commit
1383199532
|
@ -12,7 +12,7 @@ public class Recording {
|
||||||
private String path;
|
private String path;
|
||||||
private boolean hasPlaylist;
|
private boolean hasPlaylist;
|
||||||
private STATUS status;
|
private STATUS status;
|
||||||
private int generatingPlaylistProgress = -1;
|
private int progress = -1;
|
||||||
private long sizeInByte;
|
private long sizeInByte;
|
||||||
|
|
||||||
public static enum STATUS {
|
public static enum STATUS {
|
||||||
|
@ -58,11 +58,11 @@ public class Recording {
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getProgress() {
|
public int getProgress() {
|
||||||
return this.generatingPlaylistProgress;
|
return this.progress;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setProgress(int progress) {
|
public void setProgress(int progress) {
|
||||||
this.generatingPlaylistProgress = progress;
|
this.progress = progress;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getPath() {
|
public String getPath() {
|
||||||
|
|
Loading…
Reference in New Issue