--- old/jaxws/src/java.xml.bind/share/classes/javax/xml/bind/Unmarshaller.java 2017-06-01 18:20:51.353569711 +0100 +++ new/jaxws/src/java.xml.bind/share/classes/javax/xml/bind/Unmarshaller.java 2017-06-01 18:20:51.297569712 +0100 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2003, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2003, 2017, 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 @@ -23,6 +23,8 @@ * questions. */ + + package javax.xml.bind; import javax.xml.bind.annotation.adapters.XmlAdapter; @@ -975,7 +977,6 @@ * {@link #isValidating()} API as well as access to the Schema object. * To determine if the Unmarshaller has validation enabled, simply * test the return type for null: - *

*

{@code
      *   boolean isValidating = u.getSchema()!=null;
      * }