]> gitweb.fperrin.net Git - Dictionary.git/blobdiff - src/com/hughes/android/dictionary/AboutActivity.java
Fix some code inspection warnings.
[Dictionary.git] / src / com / hughes / android / dictionary / AboutActivity.java
index 60234d7e71f4b94b1a52312ad9f931e2004e06fd..2f1ee139b478be23628d1b377b67414ae58f1fe5 100644 (file)
@@ -22,8 +22,6 @@ import android.widget.TextView;
 
 public final class AboutActivity extends Activity {
 
-    public static final String CURRENT_DICT_INFO = "currentDictInfo";
-
     /** Called when the activity is first created. */
     @Override
     public void onCreate(final Bundle savedInstanceState) {
@@ -39,7 +37,7 @@ public final class AboutActivity extends Activity {
                 PackageInfo p = pm.getPackageInfo(getPackageName(), 0);
                 ver = p.versionName + " (ID " + p.versionCode + ")";
             }
-        } catch (Exception e) {
+        } catch (Exception ignored) {
         }
         TextView titleView = findViewById(R.id.titleText);
         titleView.setText("QuickDic " + ver);