--- old/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/compiler/Parser.java 2017-11-06 22:18:19.240383693 -0800 +++ new/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/compiler/Parser.java 2017-11-06 22:18:18.778338628 -0800 @@ -1,6 +1,6 @@ /* * Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved. - * @LastModified: Sep 2017 + * @LastModified: Nov 2017 */ /* * Licensed to the Apache Software Foundation (ASF) under one or more @@ -433,7 +433,7 @@ reader.setContentHandler(this); reader.parse(input); // Find the start of the stylesheet within the tree - return (SyntaxTreeNode)getStylesheet(_root); + return getStylesheet(_root); } catch (IOException e) { if (_xsltc.debug()) e.printStackTrace(); @@ -668,7 +668,7 @@ else source = new InputSource(location); - SyntaxTreeNode external = (SyntaxTreeNode)parse(source); + SyntaxTreeNode external = parse(source); return(external); }