Hi,Please review a quick catch-up fix on 8181150: the raw type List was changed to List<Object> when it would have been more favorable if it was List<?>:
src/java.xml/share/classes/javax/xml/xpath/XPathFunction.java|- public Object evaluate(List<Object> args) + public Object evaluate(List<?> args) JBS: https://bugs.openjdk.java.net/browse/JDK-8191161 Thanks, Joe |