src/share/classes/java/net/URLClassLoader.java
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File jdk Cdiff src/share/classes/java/net/URLClassLoader.java

src/share/classes/java/net/URLClassLoader.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1997, 2011, 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) 1997, 2012, 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
*** 746,763 **** public URLClassPath getURLClassPath (URLClassLoader u) { return u.ucp; } } ); ! ClassLoader.registerAsParallelCapable(); } } final class FactoryURLClassLoader extends URLClassLoader { static { ! ClassLoader.registerAsParallelCapable(); } FactoryURLClassLoader(URL[] urls, ClassLoader parent, AccessControlContext acc) { super(urls, parent, acc); --- 746,763 ---- public URLClassPath getURLClassPath (URLClassLoader u) { return u.ucp; } } ); ! ClassLoader.registerAsFullyConcurrent(); } } final class FactoryURLClassLoader extends URLClassLoader { static { ! ClassLoader.registerAsFullyConcurrent(); } FactoryURLClassLoader(URL[] urls, ClassLoader parent, AccessControlContext acc) { super(urls, parent, acc);
src/share/classes/java/net/URLClassLoader.java
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File