From cc2bf9d8aced55c9528783144cd742a4a8ecc327 Mon Sep 17 00:00:00 2001 From: Christian Date: Sun, 31 Mar 2013 10:01:46 -0400 Subject: [PATCH] Fix NPE when branding isn't present --- fml/common/cpw/mods/fml/common/Loader.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fml/common/cpw/mods/fml/common/Loader.java b/fml/common/cpw/mods/fml/common/Loader.java index b0bacb748..2181eeb1f 100644 --- a/fml/common/cpw/mods/fml/common/Loader.java +++ b/fml/common/cpw/mods/fml/common/Loader.java @@ -831,7 +831,7 @@ public class Loader { loaded.load(getClass().getClassLoader().getResourceAsStream("fmlbranding.properties")); } - catch (IOException e) + catch (Exception e) { // File not found - ignore }