Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0212c563 authored by Adam Skory's avatar Adam Skory
Browse files

Squash unreachable catch

The compiler warning distracts me often.

Change-Id: Ia96e6c82ce1c0f1ae58f7faadbf8769b36d1f810
parent d5259c8e
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -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