--- old/src/jdk.xml.bind/share/classes/com/sun/istack/internal/tools/ParallelWorldClassLoader.java 2015-10-16 12:58:52.000000000 +0200 +++ new/src/jdk.xml.bind/share/classes/com/sun/istack/internal/tools/ParallelWorldClassLoader.java 2015-10-16 12:58:52.000000000 +0200 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1997, 2015, 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 @@ -57,9 +57,9 @@ * +- X.class * *

- * {@link ParallelWorldClassLoader}("foo/") would load {@code X.class} from - * {@code /foo/X.class} (note that X is defined in the root package, not - * {@code foo.X}. + * {@link ParallelWorldClassLoader}("foo/") would load X.class from + * /foo/X.class (note that X is defined in the root package, not + * foo.X. * *

* This can be combined with {@link MaskingClassLoader} to mask classes which are loaded by the parent @@ -77,13 +77,11 @@ * +- X.class * *

- * {@link ParallelWorldClassLoader}(MaskingClassLoader.class.getClassLoader()) - * would load {@code foo.X.class} from - * {@code /bar/foo.X.class} not the {@code foo.X.class} - * in the publicly visible place in the jar file, thus - * masking the parent classLoader from loading the class from {@code foo.X.class} + * {@link ParallelWorldClassLoader}(MaskingClassLoader.class.getClassLoader()) would load foo.X.class from + * /bar/foo.X.class not the foo.X.class in the publicly visible place in the jar file, thus + * masking the parent classLoader from loading the class from foo.X.class * (note that X is defined in the package foo, not - * {@code bar.foo.X}. + * bar.foo.X. * * @author Kohsuke Kawaguchi */