summaryrefslogtreecommitdiffstats
path: root/WallpaperPicker
diff options
context:
space:
mode:
authorAdam Skory <skory@google.com>2014-06-04 18:13:49 +0100
committerAdam Skory <skory@google.com>2014-06-04 18:13:49 +0100
commit5fbdd06489f2d2e3ae166a5705269e05f7dcdfdb (patch)
treedb7becb36db58c4bc1da17393a3cce9179aabccc /WallpaperPicker
parent30a8e55d1ea05369906086fab97f78ec1a26f289 (diff)
downloadandroid_packages_apps_Trebuchet-5fbdd06489f2d2e3ae166a5705269e05f7dcdfdb.tar.gz
android_packages_apps_Trebuchet-5fbdd06489f2d2e3ae166a5705269e05f7dcdfdb.tar.bz2
android_packages_apps_Trebuchet-5fbdd06489f2d2e3ae166a5705269e05f7dcdfdb.zip
Squash unreachable catch
The compiler warning distracts me often. Change-Id: I0192314f4ac9d8e3acb40dd10a39de297affcdac
Diffstat (limited to 'WallpaperPicker')
-rw-r--r--WallpaperPicker/src/com/android/photos/BitmapRegionTileSource.java3
1 files changed, 0 insertions, 3 deletions
diff --git a/WallpaperPicker/src/com/android/photos/BitmapRegionTileSource.java b/WallpaperPicker/src/com/android/photos/BitmapRegionTileSource.java
index 764156de0..66ece4ff6 100644
--- a/WallpaperPicker/src/com/android/photos/BitmapRegionTileSource.java
+++ b/WallpaperPicker/src/com/android/photos/BitmapRegionTileSource.java
@@ -283,9 +283,6 @@ public class BitmapRegionTileSource implements TiledImageRenderer.TileSource {
} 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