浏览代码

An instanceof check is being performed on the caught exception. Create a separate catch clause for this exception type. (codacy)

AndyScherzinger 8 年之前
父节点
当前提交
03a81d902d
共有 1 个文件被更改,包括 4 次插入3 次删除
  1. 4 3
      src/main/java/com/owncloud/android/datamodel/ThumbnailsCacheManager.java

+ 4 - 3
src/main/java/com/owncloud/android/datamodel/ThumbnailsCacheManager.java

@@ -425,12 +425,13 @@ public class ThumbnailsCacheManager {
                         thumbnail = doFileInBackground(mFile);
                     }
                 }
+            } // the app should never break due to a problem with thumbnails
+            catch (OutOfMemoryError t) {
+                Log_OC.e(TAG, "Generation of thumbnail for " + mFile.getAbsolutePath() + " failed", t);
+                System.gc();
             } catch (Throwable t) {
                 // the app should never break due to a problem with thumbnails
                 Log_OC.e(TAG, "Generation of thumbnail for " + mFile.getAbsolutePath() + " failed", t);
-                if (t instanceof OutOfMemoryError) {
-                    System.gc();
-                }
             }
 
             return thumbnail;