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:
Daniel Martí 2015-09-02 10:29:27 -07:00
parent 582eebd436
commit c43505befb

View File

@ -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;
try {
if (downloadedFile == null || !downloadedFile.exists())