8191161: Reconsider generification of XPathFunction.evaluate

Reviewed-by: lancea, rriggs
This commit is contained in:
Joe Wang 2017-11-16 11:07:44 -08:00
parent 88d610826b
commit 6e80f110c3

View File

@ -51,6 +51,6 @@ public interface XPathFunction {
*
* @throws XPathFunctionException If <code>args</code> cannot be evaluated with this <code>XPath</code> function.
*/
public Object evaluate(List<Object> args)
public Object evaluate(List<?> args)
throws XPathFunctionException;
}