Remove unused repo field
Found by Android Studio.
This commit is contained in:
parent
9c86655af0
commit
3af5f55abd
@ -11,7 +11,6 @@ import java.io.InputStream;
|
|||||||
public class ProgressBufferedInputStream extends BufferedInputStream {
|
public class ProgressBufferedInputStream extends BufferedInputStream {
|
||||||
private static final String TAG = "ProgressBufferedInputSt";
|
private static final String TAG = "ProgressBufferedInputSt";
|
||||||
|
|
||||||
private final Repo repo;
|
|
||||||
private final ProgressListener progressListener;
|
private final ProgressListener progressListener;
|
||||||
private final Bundle data;
|
private final Bundle data;
|
||||||
private final int totalBytes;
|
private final int totalBytes;
|
||||||
@ -26,7 +25,6 @@ public class ProgressBufferedInputStream extends BufferedInputStream {
|
|||||||
throws IOException {
|
throws IOException {
|
||||||
super(in);
|
super(in);
|
||||||
this.progressListener = progressListener;
|
this.progressListener = progressListener;
|
||||||
this.repo = repo;
|
|
||||||
this.data = new Bundle(1);
|
this.data = new Bundle(1);
|
||||||
this.data.putString(RepoUpdater.PROGRESS_DATA_REPO_ADDRESS, repo.address);
|
this.data.putString(RepoUpdater.PROGRESS_DATA_REPO_ADDRESS, repo.address);
|
||||||
this.totalBytes = totalBytes;
|
this.totalBytes = totalBytes;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user