--- old/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/dom/DOMStringListImpl.java 2017-11-06 22:18:40.719478643 -0800 +++ new/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/dom/DOMStringListImpl.java 2017-11-06 22:18:40.271434944 -0800 @@ -1,6 +1,6 @@ /* * Copyright (c) 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 @@ -59,7 +59,7 @@ public String item(int index) { final int length = getLength(); if (index >= 0 && index < length) { - return (String) fStrings.get(index); + return fStrings.get(index); } return null; }