diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/Badges.java b/src/com/shatteredpixel/shatteredpixeldungeon/Badges.java index ccac8398b..22130495c 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/Badges.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/Badges.java @@ -230,8 +230,7 @@ public class Badges { global = restore( bundle ); - } catch (Exception e) { - ShatteredPixelDungeon.reportException(e); + } catch (IOException e) { global = new HashSet(); } } diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/Bones.java b/src/com/shatteredpixel/shatteredpixeldungeon/Bones.java index 7608e6651..182a1b81c 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/Bones.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/Bones.java @@ -138,8 +138,7 @@ public class Bones { return get(); - } catch (Exception e) { - ShatteredPixelDungeon.reportException(e); + } catch (IOException e) { return null; } diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/GamesInProgress.java b/src/com/shatteredpixel/shatteredpixeldungeon/GamesInProgress.java index 8763bec69..88cf45ec2 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/GamesInProgress.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/GamesInProgress.java @@ -23,6 +23,7 @@ package com.shatteredpixel.shatteredpixeldungeon; import com.shatteredpixel.shatteredpixeldungeon.actors.hero.HeroClass; import com.watabou.utils.Bundle; +import java.io.IOException; import java.util.HashMap; public class GamesInProgress { @@ -44,8 +45,7 @@ public class GamesInProgress { info = new Info(); Dungeon.preview( info, bundle ); - } catch (Exception e) { - ShatteredPixelDungeon.reportException(e); + } catch (IOException e) { info = null; } diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/Rankings.java b/src/com/shatteredpixel/shatteredpixeldungeon/Rankings.java index 77d37fe0c..4f6d4057f 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/Rankings.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/Rankings.java @@ -245,7 +245,6 @@ public enum Rankings { } } catch (IOException e) { - ShatteredPixelDungeon.reportException(e); } }