Rename ignored catched exceptions to "ignored" as per AS

This commit is contained in:
Daniel Martí 2015-04-21 18:59:41 +02:00
parent ab8a180141
commit 7945c0dead
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -167,7 +167,7 @@ public class InstalledAppCacheUpdater {
protected Boolean doInBackground(Void... params) {
try {
Thread.sleep(10000);
} catch (InterruptedException e) {}
} catch (InterruptedException ignored) {}
return update();
}