Prevent completely suppressing MalformedURLException

This commit is contained in:
drdev
2014-10-23 23:52:17 +00:00
parent 842040c10d
commit eee682e659
4 changed files with 0 additions and 13 deletions

View File

@@ -1,7 +1,6 @@
package forge.achievement;
import java.io.FileNotFoundException;
import java.net.MalformedURLException;
import java.util.Iterator;
import java.util.LinkedHashMap;
import java.util.Map;
@@ -130,9 +129,6 @@ public abstract class AchievementCollection implements Iterable<Achievement> {
catch (FileNotFoundException e) {
//ok if file not found
}
catch (MalformedURLException e) {
//ok if file not found
}
catch (Exception e) {
e.printStackTrace();
}

View File

@@ -52,9 +52,6 @@ public class CardPreferences {
catch (FileNotFoundException e) {
//ok if file not found
}
catch (MalformedURLException e) {
//ok if file not found
}
catch (Exception e) {
e.printStackTrace();
}

View File

@@ -114,9 +114,6 @@ public class DeckPreferences {
catch (FileNotFoundException e) {
//ok if file not found
}
catch (MalformedURLException e) {
//ok if file not found
}
catch (Exception e) {
e.printStackTrace();
}

View File

@@ -284,9 +284,6 @@ public enum ItemManagerConfig {
catch (FileNotFoundException e) {
//ok if file not found
}
catch (MalformedURLException e) {
//ok if file not found
}
catch (Exception e) {
e.printStackTrace();
}