src/share/classes/sun/font/FontManagerFactory.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 2008, 2014, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 69,87 **** if (instance != null) { return instance; } ! AccessController.doPrivileged(new PrivilegedAction() { public Object run() { try { String fmClassName = System.getProperty("sun.font.fontmanager", DEFAULT_CLASS); ClassLoader cl = ClassLoader.getSystemClassLoader(); ! Class fmClass = Class.forName(fmClassName, true, cl); instance = (FontManager) fmClass.newInstance(); } catch (ClassNotFoundException | InstantiationException | IllegalAccessException ex) { throw new InternalError(ex); --- 69,87 ---- if (instance != null) { return instance; } ! AccessController.doPrivileged(new PrivilegedAction<Object>() { public Object run() { try { String fmClassName = System.getProperty("sun.font.fontmanager", DEFAULT_CLASS); ClassLoader cl = ClassLoader.getSystemClassLoader(); ! Class<?> fmClass = Class.forName(fmClassName, true, cl); instance = (FontManager) fmClass.newInstance(); } catch (ClassNotFoundException | InstantiationException | IllegalAccessException ex) { throw new InternalError(ex);