commit | 5fbdd06489f2d2e3ae166a5705269e05f7dcdfdb | [log] [tgz] |
---|---|---|
author | Adam Skory <skory@google.com> | Wed Jun 04 18:13:49 2014 +0100 |
committer | Adam Skory <skory@google.com> | Wed Jun 04 18:13:49 2014 +0100 |
tree | db7becb36db58c4bc1da17393a3cce9179aabccc | |
parent | 30a8e55d1ea05369906086fab97f78ec1a26f289 [diff] |
Squash unreachable catch The compiler warning distracts me often. Change-Id: I0192314f4ac9d8e3acb40dd10a39de297affcdac
diff --git a/WallpaperPicker/src/com/android/photos/BitmapRegionTileSource.java b/WallpaperPicker/src/com/android/photos/BitmapRegionTileSource.java index 764156d..66ece4f 100644 --- a/WallpaperPicker/src/com/android/photos/BitmapRegionTileSource.java +++ b/WallpaperPicker/src/com/android/photos/BitmapRegionTileSource.java
@@ -283,9 +283,6 @@ } catch (FileNotFoundException e) { Log.e("BitmapRegionTileSource", "Failed to load URI " + mUri, e); return null; - } catch (IOException e) { - Log.e("BitmapRegionTileSource", "Failure while reading URI " + mUri, e); - return null; } } @Override