Merge pull request #312 from lioncash/master

[Android] Catch a more specific exception in HistoryWrapper.java.
This commit is contained in:
Squarepusher 2013-09-27 06:12:41 -07:00
commit 6d212ad2f6

View File

@ -20,7 +20,7 @@ public final class HistoryWrapper implements IconAdapterItem {
gamePathShort = file.getName();
try {
gamePathShort = gamePathShort.substring(0, gamePathShort.lastIndexOf('.'));
} catch (Exception e) {
} catch (IndexOutOfBoundsException e) {
}
}