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); .getPackageName(), 0);
((TextView) view.findViewById(R.id.version)) ((TextView) view.findViewById(R.id.version))
.setText(pi.versionName); .setText(pi.versionName);
} catch (Exception e) { } catch (Exception ignored) {
} }
Builder p; Builder p;

View File

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