v0.4.1a: removed exception tracking from read operations

This commit is contained in:
Evan Debenham 2016-08-10 10:14:27 -04:00
parent fcc088d879
commit 4bd5a10897
4 changed files with 4 additions and 7 deletions

View File

@ -230,8 +230,7 @@ public class Badges {
global = restore( bundle );
} catch (Exception e) {
ShatteredPixelDungeon.reportException(e);
} catch (IOException e) {
global = new HashSet<Badge>();
}
}

View File

@ -138,8 +138,7 @@ public class Bones {
return get();
} catch (Exception e) {
ShatteredPixelDungeon.reportException(e);
} catch (IOException e) {
return null;
}

View File

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

View File

@ -245,7 +245,6 @@ public enum Rankings {
}
} catch (IOException e) {
ShatteredPixelDungeon.reportException(e);
}
}