--- old/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/dtd/XMLDTDLoader.java 2017-11-06 22:18:48.974283771 -0800 +++ new/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/dtd/XMLDTDLoader.java 2017-11-06 22:18:48.459233536 -0800 @@ -1,6 +1,6 @@ /* - * reserved comment block - * DO NOT REMOVE OR ALTER! + * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved. + * @LastModified: Nov 2017 */ /* * Licensed to the Apache Software Foundation (ASF) under one or more @@ -195,7 +195,7 @@ * are recognized by this component. */ public String[] getRecognizedFeatures() { - return (String[])(LOADER_RECOGNIZED_FEATURES.clone()); + return LOADER_RECOGNIZED_FEATURES.clone(); } // getRecognizedFeatures():String[] /** @@ -244,7 +244,7 @@ * are recognized by this component. */ public String[] getRecognizedProperties() { - return (String[])(LOADER_RECOGNIZED_PROPERTIES.clone()); + return LOADER_RECOGNIZED_PROPERTIES.clone(); } // getRecognizedProperties():String[] /**