Rename ignored catched exceptions to "ignored" as per AS
This commit is contained in:
parent
ab8a180141
commit
7945c0dead
@ -283,7 +283,7 @@ public class FDroid extends ActionBarActivity {
|
||||
.getPackageName(), 0);
|
||||
((TextView) view.findViewById(R.id.version))
|
||||
.setText(pi.versionName);
|
||||
} catch (Exception e) {
|
||||
} catch (Exception ignored) {
|
||||
}
|
||||
|
||||
Builder p;
|
||||
|
@ -167,7 +167,7 @@ public class InstalledAppCacheUpdater {
|
||||
protected Boolean doInBackground(Void... params) {
|
||||
try {
|
||||
Thread.sleep(10000);
|
||||
} catch (InterruptedException e) {}
|
||||
} catch (InterruptedException ignored) {}
|
||||
return update();
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user