Squash unreachable catch

The compiler warning distracts me often.

Change-Id: Ia96e6c82ce1c0f1ae58f7faadbf8769b36d1f810
This commit is contained in:
Adam Skory
2014-06-05 14:38:30 +01:00
parent d5259c8ea5
commit 0212c563c8

View File

@@ -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