]> gitweb.fperrin.net Git - Dictionary.git/blobdiff - src/com/hughes/android/dictionary/DictionaryApplication.java
Fix some code inspection warnings.
[Dictionary.git] / src / com / hughes / android / dictionary / DictionaryApplication.java
index fac485124967dd0a4a6206b1a5a4da5bee00cc9f..c17c7ef82975e407f707d4da0cf8e67963edb2da 100644 (file)
@@ -157,7 +157,7 @@ public enum DictionaryApplication {
         }
         try {
             reader.close();
-        } catch (IOException e) {}
+        } catch (IOException ignored) {}
     }
 
     public synchronized void init(Context c) {
@@ -256,7 +256,7 @@ public enum DictionaryApplication {
         File efd = null;
         try {
             efd = appContext.getExternalFilesDir(null);
-        } catch (Exception e) {
+        } catch (Exception ignored) {
         }
         if (efd != null) {
             efd.mkdirs();
@@ -295,7 +295,7 @@ public enum DictionaryApplication {
         try {
             testfile.delete();
             res = testfile.createNewFile() & testfile.delete();
-        } catch (Exception e) {
+        } catch (Exception ignored) {
         }
         return res;
     }