Index: common/java/awt/Font.java =================================================================== --- common/java/awt/Font.java (revision 448875) +++ common/java/awt/Font.java (working copy) @@ -574,11 +574,8 @@ } public static Font getFont(String sp, Font f) { - String pr = null; - try { - pr = System.getProperty(sp); - } catch (Exception e){ - } + String pr = System.getProperty(sp); + if (pr == null){ return f; }