--- old/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/dom/DocumentImpl.java 2017-11-06 22:18:42.041607596 -0800 +++ new/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/dom/DocumentImpl.java 2017-11-06 22:18:41.546559312 -0800 @@ -1,6 +1,6 @@ /* * Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved. - * @LastModified: Oct 2017 + * @LastModified: Nov 2017 */ /* * Licensed to the Apache Software Foundation (ASF) under one or more @@ -773,7 +773,7 @@ // call listeners in the order in which they got registered int nlsize = nl.size(); for (int i = 0; i < nlsize; i++) { - LEntry le = (LEntry) nl.get(i); + LEntry le = nl.get(i); if (!le.useCapture && le.type.equals(evt.type) && nodeListeners.contains(le)) { try {