Fix tests by making a method explicitly protected
This was making proguard complain and refuse to continue. This fix should not alter how F-Droid works, it's just to make the tests function with proguard enabled.
This commit is contained in:
parent
582eebd436
commit
c43505befb
@ -123,7 +123,7 @@ public class RepoUpdater {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void processDownloadedFile(File downloadedFile, String cacheTag) throws UpdateException {
|
protected void processDownloadedFile(File downloadedFile, String cacheTag) throws UpdateException {
|
||||||
InputStream indexInputStream = null;
|
InputStream indexInputStream = null;
|
||||||
try {
|
try {
|
||||||
if (downloadedFile == null || !downloadedFile.exists())
|
if (downloadedFile == null || !downloadedFile.exists())
|
||||||
|
Loading…
x
Reference in New Issue
Block a user