Fixing squid:S2333 - Redundant modifiers should not be used.

This commit is contained in:
Faisal Hameed 2016-06-24 05:44:09 +05:00
parent 25a776cc93
commit a44518a757
2 changed files with 12 additions and 12 deletions

View file

@ -20,12 +20,12 @@ public class DownloadMission
{
private static final String TAG = DownloadMission.class.getSimpleName();
public static interface MissionListener {
public interface MissionListener {
HashMap<MissionListener, Handler> handlerStore = new HashMap<>();
public void onProgressUpdate(long done, long total);
public void onFinish();
public void onError(int errCode);
void onProgressUpdate(long done, long total);
void onFinish();
void onError(int errCode);
}
public static final int ERROR_SERVER_UNSUPPORTED = 206;